Beispiel #1
0
        public void Add(int value)
        {
            var t = Allocate(value);

            Root = Merge(Root, t);
        }
Beispiel #2
0
 private static int Count(TreapNode t)
 {
     return(t != null ? t.Count : 0);
 }
Beispiel #3
0
 public int GetIdx(TreapNode node)
 {
     PushUp(node);
     return(GetIdxInternal(node));
 }