当前位置:网站首页>Sword finger offer 27 Image of binary tree
Sword finger offer 27 Image of binary tree
2022-07-02 17:12:00 【anieoo】
Original link : The finger of the sword Offer 27. Image of binary tree
solution:
class Solution {
public:
TreeNode* mirrorTree(TreeNode* root) {
if(root == NULL) return NULL;
swap(root->left,root->right);
mirrorTree(root->left);
mirrorTree(root->right);
return root;
}
};
边栏推荐
- 绿竹生物冲刺港股:年期内亏损超5亿 泰格医药与北京亦庄是股东
- In MySQL and Oracle, the boundary and range of between and precautions when querying the date
- How openharmony starts FA of remote devices
- Youzan won the "top 50 Chinese enterprise cloud technology service providers" together with Tencent cloud and Alibaba cloud [easy to understand]
- OpenPose的使用
- Learning Weekly - total issue 60 - 25th week of 2022
- 一文看懂:数据指标体系的4大类型
- Yolov5 practice: teach object detection by hand
- LSF basic command
- 【Leetcode】13. Roman numeral to integer
猜你喜欢
上传代码到远程仓库报错error: remote origin already exists.
福元医药上交所上市:市值105亿 胡柏藩身价超40亿
The macrogenome microbiome knowledge you want is all here (2022.7)
871. 最低加油次数
Cell:清华程功组揭示皮肤菌群的一种气味挥发物促进黄病毒感染宿主吸引蚊虫...
深度之眼(二)——矩阵及其基本运算
关于举办科技期刊青年编辑沙龙——新时代青年编辑应具备的能力及提升策略的通知...
【云原生】简单谈谈海量数据采集组件Flume的理解
【征文活动】亲爱的开发者,RT-Thread社区喊你投稿啦
Masa framework - DDD design (1)
随机推荐
OpenPose的使用
Weili holdings listed on the Hong Kong Stock Exchange: with a market value of HK $500million, it contributed an IPO to Hubei
寒门再出贵子:江西穷县考出了省状元,做对了什么?
相信自己,这次一把搞定JVM面试
Xiaopeng P7 had an accident on rainy days, and the airbag did not pop up. Official response: the impact strength did not meet the ejection requirements
[essay solicitation activity] Dear developer, RT thread community calls you to contribute
Blog theme "text" summer fresh Special Edition
PhD Debate-11 预告 | 回顾与展望神经网络的后门攻击与防御
VMware install win10 image
Exploration and practice of integration of streaming and wholesale in jd.com
Vscode setting delete line shortcut [easy to understand]
基于Impala的高性能数仓实践之执行引擎模块
Notice on holding a salon for young editors of scientific and Technological Journals -- the abilities and promotion strategies that young editors should have in the new era
Penetration tool - intranet permission maintenance -cobalt strike
MySQL port
上传代码到远程仓库报错error: remote origin already exists.
福元医药上交所上市:市值105亿 胡柏藩身价超40亿
Interpretation of key parameters in MOSFET device manual
OpenHarmony如何启动远程设备的FA
剑指 Offer 25. 合并两个排序的链表