Esempio n. 1
0
File: BT.cs Progetto: maziesmith/FYP
 public bool search(data s)
 {
     return(root.search(root, s));
 }
Esempio n. 2
0
 public Node(data value)
 {
     number    = value;
     rightLeaf = null;
     leftLeaf  = null;
 }