Leetcode-114.二叉树展开为链表(Python)

发布时间:2024年01月04日

题目链接

# Definition for a binary tree node.
# class TreeNode:
#     def __init__(self, val=0, left=None, right=None):
#         self.val = val
#         self.left = left
#         self.right = right
class Solution:
    def flatten(self, root: Optional[TreeNode]) -> None:
        """
        Do not return anything, modify root in-place instead.
        """
        if not root:
            return None
        self.flatten(root.left)
        self.flatten(root.right)
        temp=root.right
        root.right=root.left
        root.left=None
        while root.right:
            root=root.right
        root.right=temp

文章来源:https://blog.csdn.net/m0_53678795/article/details/135396078
本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。