首页 > 代码库 > [leetcode]Populating Next Right Pointers in Each Node @ Python
[leetcode]Populating Next Right Pointers in Each Node @ Python
原题地址:https://oj.leetcode.com/problems/populating-next-right-pointers-in-each-node/
题意:
1 / 2 3 / \ / 4 5 6 7
变为:
1 -> NULL / 2 -> 3 -> NULL / \ / 4->5->6->7 -> NULL
解题思路:看到二叉树我们就想到需要使用递归的思路了。直接贴代码吧,思路不难。
代码:
# Definition for a binary tree node # class TreeNode: # def __init__(self, x): # self.val = x # self.left = None # self.right = None # self.next = None class Solution: # @param root, a tree node # @return nothing def connect(self, root): if root and root.left: root.left.next = root.right if root.next: root.right.next = root.next.left else: root.right.next = None self.connect(root.left) self.connect(root.right)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。