当前位置:网站首页>Leetcode daily question (971. flip binary tree to match preorder traversal)
Leetcode daily question (971. flip binary tree to match preorder traversal)
2022-07-06 06:35:00 【wangjun861205】
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.
use preorder To traverse the tree , At the same time vayage Contrast , If the value of the left node is the same as voyage If the next value of is equal, the left node is used for the next traversal , If the value of the right node is the same as voyage The next value of is equal , Then use the node on the right to go through the next step . But if you need to traverse with the right node, it proves that the left and right nodes need to be interchanged , So the value of the current node needs to be added to the answer array .
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)
}
}
边栏推荐
- 如何将flv文件转为mp4文件?一个简单的解决办法
- 云服务器 AccessKey 密钥泄露利用
- SSO流程分析
- 今日夏至 Today‘s summer solstice
- CS certificate fingerprint modification
- leetcode 24. 两两交换链表中的节点
- 模拟卷Leetcode【普通】1143. 最长公共子序列
- oscp raven2靶机渗透过程
- Play video with Tencent video plug-in in uni app
- Traffic encryption of red blue confrontation (OpenSSL encrypted transmission, MSF traffic encryption, CS modifying profile for traffic encryption)
猜你喜欢

Drug disease association prediction based on multi-scale heterogeneous network topology information and multiple attributes

关于新冠疫情,常用的英文单词、语句有哪些?

字幕翻译中翻英一分钟多少钱?

女生学软件测试难不难 入门门槛低,学起来还是比较简单的

Full link voltage measurement: building three models

Tms320c665x + Xilinx artix7 DSP + FPGA high speed core board

利用快捷方式-LNK-上线CS

【MQTT从入门到提高系列 | 01】从0到1快速搭建MQTT测试环境

中英对照:You can do this. Best of luck祝你好运

Redis core technology and basic architecture of actual combat: what does a key value database contain?
随机推荐
Black cat takes you to learn UFS Protocol Part 8: UFS initialization (boot operation)
Simulation volume leetcode [general] 1314 Matrix area and
MySQL5.72.msi安装失败
模拟卷Leetcode【普通】1296. 划分数组为连续数字的集合
[mqtt from getting started to improving series | 01] quickly build an mqtt test environment from 0 to 1
LeetCode每日一题(1870. Minimum Speed to Arrive on Time)
论文翻译英译中,怎样做翻译效果好?
查询字段个数
A 27-year-old without a diploma, wants to work hard on self-study programming, and has the opportunity to become a programmer?
Cannot create poolableconnectionfactory (could not create connection to database server. error
论文摘要翻译,多语言纯人工翻译
JDBC requset corresponding content and function introduction
[web security] nodejs prototype chain pollution analysis
How much is it to translate Chinese into English for one minute?
[ 英语 ] 语法重塑 之 动词分类 —— 英语兔学习笔记(2)
How effective is the Chinese-English translation of international economic and trade contracts
LeetCode每日一题(1997. First Day Where You Have Been in All the Rooms)
Technology sharing | common interface protocol analysis
Black cat takes you to learn EMMC Protocol Part 10: EMMC read and write operation details (read & write)
What are the characteristics of trademark translation and how to translate it?