当前位置:网站首页>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)
}
}
边栏推荐
- 翻译生物医学说明书,英译中怎样效果佳
- Esp32 esp-idf watchdog twdt
- MySQL5.72.msi安装失败
- Biomedical English contract translation, characteristics of Vocabulary Translation
- leetcode 24. Exchange the nodes in the linked list in pairs
- [ 英语 ] 语法重塑 之 英语学习的核心框架 —— 英语兔学习笔记(1)
- 模拟卷Leetcode【普通】1296. 划分数组为连续数字的集合
- 基于JEECG-BOOT的list页面的地址栏参数传递
- 金融德语翻译,北京专业的翻译公司
- 记一个基于JEECG-BOOT的比较复杂的增删改功能的实现
猜你喜欢
钓鱼&文件名反转&office远程模板
如何将flv文件转为mp4文件?一个简单的解决办法
On the first day of clock in, click to open a surprise, and the switch statement is explained in detail
Traffic encryption of red blue confrontation (OpenSSL encrypted transmission, MSF traffic encryption, CS modifying profile for traffic encryption)
Postman core function analysis - parameterization and test report
How effective is the Chinese-English translation of international economic and trade contracts
我的创作纪念日
如何做好金融文献翻译?
The internationalization of domestic games is inseparable from professional translation companies
How much is the price for the seal of the certificate
随机推荐
MySQL5.72. MSI installation failed
国际经贸合同翻译 中译英怎样效果好
CS passed (cdn+ certificate) PowerShell online detailed version
Financial German translation, a professional translation company in Beijing
Changes in the number of words in English papers translated into Chinese
Luogu p2089 roast chicken
Summary of leetcode's dynamic programming 4
Address bar parameter transmission of list page based on jeecg-boot
How do programmers remember code and programming language?
How to translate biomedical instructions in English
It is necessary to understand these characteristics in translating subtitles of film and television dramas
JDBC requset corresponding content and function introduction
红蓝对抗之流量加密(Openssl加密传输、MSF流量加密、CS修改profile进行流量加密)
On the first day of clock in, click to open a surprise, and the switch statement is explained in detail
記一個基於JEECG-BOOT的比較複雜的增删改功能的實現
Simulation volume leetcode [general] 1405 Longest happy string
[ 英语 ] 语法重塑 之 动词分类 —— 英语兔学习笔记(2)
Simulation volume leetcode [general] 1447 Simplest fraction
模拟卷Leetcode【普通】1219. 黄金矿工
[no app push general test plan