971. Flip Binary Tree To Match Preorder Traversal

23 篇文章 0 订阅

Given a binary tree with N nodes, each node has a different value from {1, ..., N}.

A node in this binary tree can be flipped by swapping the left child and the right child of that node.

Consider the sequence of N values reported by a preorder traversal starting from the root.  Call such a sequence of N values the voyage of the tree.

(Recall that a preorder traversal of a node means we report the current node's value, then preorder-traverse the left child, then preorder-traverse the right child.)

Our goal is to flip the least number of nodes in the tree so that the voyage of the tree matches the voyage we are given.

If we can do so, then return a list of the values of all nodes flipped.  You may return the answer in any order.

If we cannot do so, then return the list [-1].

 

Example 1:

Input: root = [1,2], voyage = [2,1]
Output: [-1]

Example 2:

Input: root = [1,2,3], voyage = [1,3,2]
Output: [1]

Example 3:

Input: root = [1,2,3], voyage = [1,2,3]
Output: []

 

Note:

  1. 1 <= N <= 100

思路:递归

# Definition for a binary tree node.
class TreeNode:
    def __init__(self, x):
        self.val = x
        self.left = None
        self.right = None

class Solution:
    def flipMatchVoyage(self, root, voyage):
        """
        :type root: TreeNode
        :type voyage: List[int]
        :rtype: List[int]
        """
        def helper(root, voyage):
            if not root and not voyage: return True,[]
            if not root or not voyage: return False,[-1]
            if root.val!=voyage[0]: return False,[-1]
            
            if not root.right: return helper(root.left, voyage[1:])
            if not root.left: return helper(root.right, voyage[1:])
            
            if root.left.val not in voyage or root.right.val not in voyage: return False,[-1]
            l_index = voyage.index(root.left.val)
            r_index = voyage.index(root.right.val)
            
            left = helper(root.left, voyage[1:r_index])
            right = helper(root.right, voyage[r_index:])
            if left[0] and right[0]: return True,left[1]+right[1]
            
            left = helper(root.left, voyage[l_index:])
            right = helper(root.right, voyage[1:l_index])
            if left[0] and right[0]: return True,[root.val]+left[1]+right[1]
            
            return False,[-1]
        
        return helper(root, voyage)[1]
    
            
        
        
        
        

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值