Interface ITree<K,​V>

  • All Known Implementing Classes:
    Tree

    public interface ITree<K,​V>
    • Method Detail

      • insert

        void insert​(K key,
                    V element)
      • removeAll

        void removeAll()
      • get

        V get​(K key)
      • remove

        void remove​(K key)
      • size

        int size()
      • isEmpty

        boolean isEmpty()
      • getValues

        java.lang.Iterable<V> getValues()
      • getKeys

        java.lang.Iterable<K> getKeys()
      • getDeepSearchFirstValues

        java.lang.Iterable<V> getDeepSearchFirstValues()
      • getBreadthSearchFirstValues

        java.lang.Iterable<V> getBreadthSearchFirstValues()