-
Notifications
You must be signed in to change notification settings - Fork 253
Convert Sorted Array to Binary Search Tree
Linda Zhou edited this page Nov 20, 2022
·
8 revisions
- 🔗 Leetcode Link: https://leetcode.com/problems/convert-sorted-array-to-binary-search-tree/
- 💡 Difficulty:
- ⏰ Time to complete: __ mins
- 🛠️ Topics: Binary Trees, Binary Search Trees
- 🗒️ Similar Questions: Convert Sorted List to Binary Search Tree
Understand what the interviewer is asking for by using test cases and questions about the problem.
- Established a set (2-3) of test cases to verify their own solution later.
- Established a set (1-2) of edge cases to verify their solution handles complexities.
- Have fully understood the problem and have no clarifying questions.
- Have you verified any Time/Space Constraints for this problem?
HAPPY CASE
EDGE CASE
Match what this problem looks like to known categories of problems, e.g. Linked List or Dynamic Programming, and strategies or patterns in those categories.
For trees, some things we should consider are:
- Using a traversal (ie. Pre-Order, In-Order, Post-Order, Level-Order)
- With a traversal we can visit every node, including the leaf nodes
- If we can find the depth of every leaf, we can find the min depth
- We should find a way to keep track of the depth of each node we visit while traversing
- Using binary search to find an element
- The tree is not ordered in any way, and we should probably visit all leaves, so searching for a specific node won't work
- Storing nodes within a HashMap to refer to later
- Applying a level-order traversal with a queue
Plan the solution with appropriate visualizations and pseudocode.
Implement the code to solve the algorithm.
Review the code by running specific example(s) and recording values (watchlist) of your code's variables along the way.
- Trace through your code with an input to check for the expected output
- Catch possible edge cases and off-by-one errors
Evaluate the performance of your algorithm and state any strong/weak or future potential work.
Assume N
represents the number of nodes in the tree.
- Time Complexity:
- Space Complexity: