wenima / data-structures

used for all data structure assignments
1 stars 0 forks source link

Summary

[Build Status

The assignment was to implement a binary tree search in Python containing 6 methods:

Definition:

A BST is a binary tree where nodes are ordered in the following way:

For more information on the assignment, see here: https://en.wikipedia.org/wiki/Binary_search_tree

Testing:

======= Name Stmts Miss Cover Missing
src/bst.py 79 16 80% 135-159
src/test_bst.py 73 1 99% 111
----------------------- --- -- ---- -------------------------------
TOTAL 152 17 89%

Comments about implementation: