Open
Conversation
spitsfire
reviewed
Jul 13, 2022
| else: | ||
| current = current.right | ||
|
|
||
| # Time Complexity: o(1) |
There was a problem hiding this comment.
Time complexity for find will be O(log n) because you are still iterating through the BST, but only one half of it every time.
| result = self.inorder_helper(current.right, result) | ||
| return result | ||
|
|
||
| def inorder(self): |
| result = self.preorder_helper(current.left, result) | ||
| result = self.preorder_helper(current.right, result) | ||
| return result | ||
| def preorder(self): |
|
|
||
| # Time Complexity: | ||
| # Space Complexity: | ||
| def postorder(self): |
|
|
||
| # Time Complexity: | ||
| # Space Complexity: | ||
| def height(self): |
| # Time Complexity: | ||
| # Space Complexity: | ||
| # Time Complexity: O(log(n)) | ||
| # Space Complexity: O(n) |
There was a problem hiding this comment.
since you aren't recursively calling this, the space complexity is O(1) because no new memory is dependent upon the size of the input
| current = current.right | ||
|
|
||
| # Time Complexity: o(1) | ||
| # Space Complexity: O(n) |
There was a problem hiding this comment.
since you aren't recursively calling this, the space complexity is O(1) because no new memory is dependent upon the size of the input
| # Time Complexity: o(1) | ||
| # Space Complexity: O(n) | ||
| # search for a node in the tree | ||
| def find(self, key): |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
No description provided.