示例#1
0
 public NodeST(GraphNode node, NodeST parent)
 {
     this.value  = node;
     this.parent = parent;
 }
示例#2
0
 public TreeST(NodeST root)
 {
     this.root = root;
 }