Week 8 Nikhil
Week 8 Nikhil
keys = [6, 20, 245, 38, 27, 43, 3, 9, 82, 10, 2, 56, 9, 11]
Tasks:
In-order Traversal: [11, 56, 10, 9, 9, 2, 43, 82, 38, 3, 20, 27, 6, 245]
Pre-order Traversal: [6, 20, 38, 43, 9, 10, 56, 11, 9, 2, 82, 3, 27, 245]
Post-order Traversal: [11, 56, 9, 10, 2, 9, 82, 43, 3, 38, 27, 20, 245, 6]
In-order Traversal: [2, 3, 6, 9, 10, 11, 20, 27, 38, 43, 56, 82, 245]
Search 43: 43
Search 82: 82
Tasks:
Submit these three assignments in 3 separate files.
This assignment will help you demonstrate your understanding of various data structures,
binary trees, and binary search trees, as well as your ability to implement and explain
algorithms for working with these structures.