Exemplo n.º 1
0
 public BinaryTree(InterfaceOfComparator <ElementType> comparator)
 {
     Comparator = comparator;
 }
Exemplo n.º 2
0
 public void BubbleSort(ElementType[] array, InterfaceOfComparator <ElementType> Comparator)
 {
     Comparator.Compair(array);
 }