首页 > 编程语言 > 详细

【python刷题】二叉树-相关题目

时间:2021-01-17 19:57:37      阅读:41      评论:0      收藏:0      [点我收藏+]

计算二叉树有多少个节点

def count(root):
    if not root:
        return 0
   return 1 + count(root.left) + count(root.right)   

计算二叉树的深度

def count_depth(root):
    if not root:
        return 0
    return max(count_depth(root.left), count_depth(root.right)) + 1

leetcode 226 翻转二叉树

class Solution:
    def invertTree(self, root: TreeNode) -> TreeNode:
        if not root:
            return None
        root.left, root.right = root.right, root.left
        self.invertTree(root.left)
        self.invertTree(root.right)
        return root

leetcode 114 二叉树展开为链表

class Solution:
    def flatten(self, root: TreeNode) -> None:
        """
        Do not return anything, modify root in-place instead.
        """
        if not root:
            return None
        self.flatten(root.left)
        self.flatten(root.right)
        left = root.left
        right = root.right
        root.left = None
        root.right = left
        p = root
        while p.right:
            p = p.right
            
        p.right = right
        return root

【python刷题】二叉树-相关题目

原文:https://www.cnblogs.com/xiximayou/p/14287533.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!