colo6299 / CS-1.3-Core-Data-Structures

MIT License
0 stars 0 forks source link

Submission 5: Trees and Tree traversal #4

Open Sukhrobjon opened 4 years ago

Sukhrobjon commented 4 years ago
  1. Binary Search Tree
    • everything works and passes all tests. But you need to revisit runt time annotations for some of the function, they are not right. e.g the run time for checking the height of th tree is not O(1).
  2. Tree Traversal
    • Great work.