Ejemplo n.º 1
0
        void Gather(KeyNode <K> node)
        {
            if (node != null)
            {
                Add(Allocation.New(node));

                Gather(node.Left);
                Gather(node.Right);
            }
        }
Ejemplo n.º 2
0
 public int Compare(Allocation x, Allocation y)
 {
     return(x.Begin.CompareTo(y.Begin));
 }