public interface ITree<K,V>
| Modifier and Type | Method and Description |
|---|---|
V |
get(K key) |
Iterable<V> |
getBreadthSearchFirstValues() |
Iterable<V> |
getDeepSearchFirstValues() |
Iterable<K> |
getKeys() |
ITreeWalker<K,V> |
getTreeWalker() |
Iterable<V> |
getValues() |
void |
insert(K key,
V element) |
boolean |
isEmpty() |
void |
remove(K key) |
void |
removeAll() |
int |
size() |
void removeAll()
void remove(K key)
int size()
boolean isEmpty()
ITreeWalker<K,V> getTreeWalker()
Copyright © 2007–2017 Andreas W. Bartels. All rights reserved.