Class BTreeRemoval


  • public class BTreeRemoval
    extends java.lang.Object
    • Constructor Summary

      Constructors 
      Constructor Description
      BTreeRemoval()  
    • Method Summary

      All Methods Static Methods Concrete Methods 
      Modifier and Type Method Description
      static <V> java.lang.Object[] remove​(java.lang.Object[] btree, java.util.Comparator<? super V> comparator, V elem)
      Remove |elem| from |btree|.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • BTreeRemoval

        public BTreeRemoval()
    • Method Detail

      • remove

        public static <V> java.lang.Object[] remove​(java.lang.Object[] btree,
                                                    java.util.Comparator<? super V> comparator,
                                                    V elem)
        Remove |elem| from |btree|. If it's not present then return |btree| itself.