-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path117.py
28 lines (27 loc) · 859 Bytes
/
117.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
# Definition for binary tree with next pointer.
# class TreeLinkNode:
# def __init__(self, x):
# self.val = x
# self.left = None
# self.right = None
# self.next = None
class Solution:
# @param root, a tree link node
# @return nothing
def connect(self, root):
if root == None:
return
stack = [root]
while len(stack) > 0:
len_stack = len(stack)
level_stack = []
for idx in range(0,len_stack):
node = stack[idx]
if node.left != None:
level_stack.append(node.left)
if node.right != None:
level_stack.append(node.right)
if idx != len_stack -1:
node.next = stack[idx+1]
stack = level_stack[:]
return