LeetCode每日一题(971. Flip Binary Tree To Match Preorder Traversal)

该博客探讨了如何解决LeetCode中的第971题,目标是通过翻转二叉树节点来匹配给定的前序遍历序列。文章介绍了翻转节点的方法,并提供了示例解释何时需要翻转节点,以及如何确定没有可能匹配的情况。
摘要由CSDN通过智能技术生成

You are given the root of a binary tree with n nodes, where each node is uniquely assigned a value from 1 to n. You are also given a sequence of n values voyage, which is the desired pre-order traversal of the binary tree.

Any node in the binary tree can be flipped by swapping its left and right subtrees. For example, flipping node 1 will have the following effect:

Flip the smallest number of nodes so that the pre-order traversal of the tree matches voyage.

Return a list of the values of all flipped nodes. You may return the answer in any order. If it is impossible to flip the nodes in the tree to make the pre-order traversal match voyage, return the list [-1].

Example 1:

Input: root = [1,2], voyage = [2,1]
Output: [-1]
Explanation: It is impossible to flip the nodes such that the pre-order traversal matches voyage.

Example 2:

Input: root = [1,2,3], voyage = [1,3,2]
Output: [1]
Explanation: Flipping node 1 swaps nodes 2 and 3, so the pre-order traversal matches voyage.

Example 3:

Input: root = [1,2,3], voyage = [1,2,3]
Output: []
Explanation: The tree’s pre-order traversal already matches voyage, so no nodes need to be flipped.

Constraints:

  • The number of nodes in the tree is n.
  • n == voyage.length
  • 1 <= n <= 100
  • 1 <= Node.val, voyage[i] <= n
  • All the values in the tree are unique.
  • All the values in voyage are unique.

用 preorder 来遍历树, 同时跟 vayage 进行对比, 如果左边节点的值与 voyage 的下一个值相等则用左边节点进行下一步的遍历, 如果右边节点的值与 voyage 的下一个值相等, 那就用右边的节点进行下一步的遍历。但是如果需要用右边节点进行遍历则证明左右两边节点需要互换,所以当前节点的值需要加到答案数组里。



use std::cell::RefCell;
use std::rc::Rc;

impl Solution {
    fn rc(root: Option<Rc<RefCell<TreeNode>>>, voyage: &mut Vec<i32>) -> Vec<i32> {
        if let Some(node) = root {
            let v = voyage.remove(0);
            if node.borrow().val != v {
                return vec![-1];
            }
            let left = node.borrow_mut().left.take();
            let right = node.borrow_mut().right.take();
            let left_val = if let Some(l) = &left {
                l.borrow().val
            } else {
                -1
            };
            let right_val = if let Some(r) = &right {
                r.borrow().val
            } else {
                -1
            };
            if left_val == -1 && right_val == -1 {
                return vec![];
            }
            if left_val == voyage[0] {
                let mut l = Solution::rc(left, voyage);
                if l == vec![-1] {
                    return vec![-1];
                }
                let mut r = Solution::rc(right, voyage);
                if r == vec![-1] {
                    return vec![-1];
                }
                l.append(&mut r);
                return l;
            }
            let mut l = Solution::rc(right, voyage);
            if l == vec![-1] {
                return vec![-1];
            }
            let mut r = Solution::rc(left, voyage);
            if r == vec![-1] {
                return vec![-1];
            }
            l.append(&mut r);
            if left_val != -1 {
                l.push(node.borrow().val);
            }
            return l;
        }
        vec![]
    }
    pub fn flip_match_voyage(
        root: Option<Rc<RefCell<TreeNode>>>,
        mut voyage: Vec<i32>,
    ) -> Vec<i32> {
        Solution::rc(root, &mut voyage)
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值