-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy path173.Binary-Search-Tree-Iterator.py
54 lines (42 loc) · 1.1 KB
/
173.Binary-Search-Tree-Iterator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# https://leetcode.com/problems/binary-search-tree-iterator/
#
# algorithms
# Medium (49.5%)
# Total Accepted: 215,089
# Total Submissions: 434,545
# Definition for a binary tree node.
# class TreeNode(object):
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
from collections import deque
class BSTIterator(object):
def __init__(self, root):
"""
:type root: TreeNode
"""
self.stack = deque()
self.push(root)
def next(self):
"""
@return the next smallest number
:rtype: int
"""
top = self.stack.pop()
self.push(top.right)
return top.val
def hasNext(self):
"""
@return whether we have a next smallest number
:rtype: bool
"""
return bool(self.stack)
def push(self, root):
while root:
self.stack.append(root)
root = root.left
# Your BSTIterator object will be instantiated and called as such:
# obj = BSTIterator(root)
# param_1 = obj.next()
# param_2 = obj.hasNext()