Skip to content

Commit

Permalink
Starting implementation tips for binary tree
Browse files Browse the repository at this point in the history
  • Loading branch information
jcasimir committed Dec 14, 2013
1 parent 82b9b68 commit a07b5e0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions binary_trees/README.markdown
Expand Up @@ -16,3 +16,12 @@ A binary tree is built from *nodes*. Each node has:

### Sorting

### Implementation Tips

* Start with modeling a node
* Then attach one node to another
* Then attach multiple nodes together
* Then implement search when there's just a single node
* Then implement search for multiple nodes
* Then implement sorted output for a single node
* Then implement sorted output for multiple nodes

0 comments on commit a07b5e0

Please sign in to comment.