当前位置:网站首页>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)
}
}
边栏推荐
- In English translation of papers, how to do a good translation?
- University of Manchester | dda3c: collaborative distributed deep reinforcement learning in swarm agent systems
- Biomedical localization translation services
- Thesis abstract translation, multilingual pure human translation
- 论文摘要翻译,多语言纯人工翻译
- Is the test cycle compressed? Teach you 9 ways to deal with it
- LeetCode 731. My schedule II
- Advanced MySQL: Basics (1-4 Lectures)
- 如何做好互联网金融的英语翻译
- sourceInsight中文乱码
猜你喜欢
Customize the gateway filter factory on the specified route
Drug disease association prediction based on multi-scale heterogeneous network topology information and multiple attributes
利用快捷方式-LNK-上线CS
Apple has open source, but what about it?
Basic knowledge of MySQL
钓鱼&文件名反转&office远程模板
Summary of leetcode's dynamic programming 4
Changes in the number of words in English papers translated into Chinese
基于JEECG-BOOT制作“左树右表”交互页面
Career advancement Guide: recommended books for people in big factories
随机推荐
Private cloud disk deployment
专业论文翻译,英文摘要如何写比较好
Luogu p2141 abacus mental arithmetic test
字幕翻译中翻英一分钟多少钱?
Black cat takes you to learn UFS protocol Chapter 4: detailed explanation of UFS protocol stack
钓鱼&文件名反转&office远程模板
模拟卷Leetcode【普通】1249. 移除无效的括号
Lecture 8: 1602 LCD (Guo Tianxiang)
【MQTT从入门到提高系列 | 01】从0到1快速搭建MQTT测试环境
Py06 字典 映射 字典嵌套 键不存在测试 键排序
Construction and integration of Zipkin and sleuth for call chain monitoring
keil MDK中删除添加到watch1中的变量
MFC关于长字符串unsigned char与CString转换及显示问题
leetcode 24. 两两交换链表中的节点
Wish Dragon Boat Festival is happy
关于新冠疫情,常用的英文单词、语句有哪些?
Database - current read and snapshot read
Phishing & filename inversion & Office remote template
How to translate biomedical instructions in English
How to translate professional papers and write English abstracts better