首页 > 代码库 > 94. Binary Tree Inorder Traversal
94. Binary Tree Inorder Traversal
94. Binary Tree Inorder Traversal
Given a binary tree, return the inorder traversal of its nodes‘ values.
For example:
Given binary tree[1,null,2,3]
,1 2 / 3
return
[1,3,2]
.
该题是做数的中序遍历,下面分别是递归解法和非递归解法:
递归解法:
class Solution(object): def inorderTraversal(self, root): """ :type root: TreeNode :rtype: List[int] """ if not root: return [] return self.inorderTraversal(root.left) + [root.val] + self.inorderTraversal(root.right)
非递归解法:
class Solution(object): def inorderTraversal(self, root): """ :type root: TreeNode :rtype: List[int] """ if not root: return [] stack = [] node = root result = [] while node or len(stack) > 0: while node: stack.append(node) node = node.left node = stack.pop() result.append(node.val) node = node.right return result
94. Binary Tree Inorder Traversal
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。