| Package | Description |
|---|---|
| datastructures.tree |
| Modifier and Type | Method and Description |
|---|---|
void |
ITree.BFS(Action<T> a)
It is a technique for traversing a tree, called Breadth first search
|
void |
ITree.DFS(Action<T> a)
It is a technique for traversing a tree, called Depth first search
|