当前位置:网站首页>LeetCode每日一题(971. Flip Binary Tree To Match Preorder Traversal)
LeetCode每日一题(971. Flip Binary Tree To Match Preorder Traversal)
2022-07-06 06:26: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.
用 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)
}
}
边栏推荐
- Luogu p2141 abacus mental arithmetic test
- Black cat takes you to learn UFS Protocol Part 8: UFS initialization (boot operation)
- Simulation volume leetcode [general] 1447 Simplest fraction
- 模拟卷Leetcode【普通】1061. 按字典序排列最小的等效字符串
- Today's summer solstice
- Construction and integration of Zipkin and sleuth for call chain monitoring
- 生物医学本地化翻译服务
- Avtiviti创建表时报错:Error getting a new connection. Cause: org.apache.commons.dbcp.SQLNestedException
- 金融德语翻译,北京专业的翻译公司
- Database - current read and snapshot read
猜你喜欢
Basic knowledge of MySQL
翻译生物医学说明书,英译中怎样效果佳
How much is it to translate Chinese into English for one minute?
论文摘要翻译,多语言纯人工翻译
Private cloud disk deployment
LeetCode 1200. Minimum absolute difference
Postman core function analysis - parameterization and test report
Database isolation level
JDBC requset corresponding content and function introduction
MFC on the conversion and display of long string unsigned char and CString
随机推荐
模拟卷Leetcode【普通】1296. 划分数组为连续数字的集合
模拟卷Leetcode【普通】1405. 最长快乐字符串
Tms320c665x + Xilinx artix7 DSP + FPGA high speed core board
Error getting a new connection Cause: org. apache. commons. dbcp. SQLNestedException
金融德语翻译,北京专业的翻译公司
[mqtt from getting started to improving series | 01] quickly build an mqtt test environment from 0 to 1
ECS accessKey key disclosure and utilization
Apple has open source, but what about it?
CS通过(CDN+证书)powershell上线详细版
keil MDK中删除添加到watch1中的变量
Data type of MySQL
It is necessary to understand these characteristics in translating subtitles of film and television dramas
MFC关于长字符串unsigned char与CString转换及显示问题
sourceInsight中文乱码
Simulation volume leetcode [general] 1062 Longest repeating substring
基于JEECG-BOOT制作“左树右表”交互页面
Simulation volume leetcode [general] 1249 Remove invalid parentheses
[no app push general test plan
How to translate professional papers and write English abstracts better
LeetCode 739. Daily temperature