Node

The node of the tree. Each node has one character as its member.

class Node {
wchar label;
bool visited;
}

Meta