コード例 #1
0
ファイル: BT.cs プロジェクト: maziesmith/FYP
 public bool search(data s)
 {
     return(root.search(root, s));
 }
コード例 #2
0
 public Node(data value)
 {
     number    = value;
     rightLeaf = null;
     leftLeaf  = null;
 }