题目

The following is from Max Howell @twitter:

Google: 90% of our engineers use the sofware you wrote (Homebrew), but you can’t invert a binary tree on a whiteboard so fuck of. Now it’s your turn to prove that YOU CAN invert a binary tree!

Input Specification:

Each input file contains one test case. For each case, the first line gives a positive integer N (<=10) which is the total number of nodes in the tree — and hence the nodes are numbered from 0 to N-1. Then N lines follow, each corresponds to a node from 0 to N-1, and gives the indices of the lef and right children of the node. If the child does not exist, a “-” will be put at the position. Any pair of children are separated by a space.

Output Specification:

For each test case, print in the first line the level-order, and then in the second line the in-order traversal sequences of the inverted tree. There must be exactly one space between any adjacent numbers, and no extra space at the end of the line.

Sample Input:

8

1 –

– –

0 –

2 7

– –

– –

5 –

4 6

Sample Output:

3 7 2 6 4 0 5 1

6 5 7 4 3 2 0 1

题目分析

已知所有节点的左右子节点,求反转二叉树的中序和后序序列

解题思路

思路 01

  1. 输入时,将左右子节点对换,即可完成反转
  2. bfs广度优先遍历,输出层序序列
  3. 递归输出中序序列

思路 02

  1. 将节点关系按照输入保存
  2. 使用后序遍历递归进行二叉树反转(也可使用前序遍历递归进行二叉树反转)
  3. bfs广度优先遍历,输出层序序列
  4. 递归输出中序序列

Code

Code 01(最优)

#include <iostream>
#include <vector>
#include <queue>
using namespace std;
const int maxn = 10;
int nds[maxn][2];
int n,cnt;
bool flag[maxn];
void bfs(int root) {
queue<int> q;
q.push(root);
while(!q.empty()) {
int now = q.front();
q.pop();
printf("%d",now);
if(++cnt<n)printf(" ");
if(nds[now][0]!=-1)q.push(nds[now][0]);
if(nds[now][1]!=-1)q.push(nds[now][1]);
}
}
void inOrder(int nd){
if(nd==-1){//nds[nd][0]==-1&&nds[nd][1]==-1
return;
}
inOrder(nds[nd][0]);
printf("%d",nd);
if(++cnt<n)printf(" ");
inOrder(nds[nd][1]);
}
int main(int argc,char * argv[]) {
char f,r;
scanf("%d",&n);
for(int i=0; i<n; i++) {
scanf("%*c%c %c",&r,&f);
if(f=='-')nds[i][0]=-1;
else {
nds[i][0]=f-'0';
flag[nds[i][0]]=true;
}
if(r=='-')nds[i][1]=-1;
else {
nds[i][1]=r-'0';
flag[nds[i][1]]=true;
} }
//find root
int k=0;
while(k<n&&flag[k])k++;
bfs(k);
printf("\n");
cnt=0;
inOrder(k);
return 0;
}

Code 02

#include <cstdio>
#include <queue>
#include <algorithm>
using namespace std;
const int maxn = 10;
struct node { // 二叉树的静态写法
int lchild, rchild;
} Node[maxn];
bool notRoot[maxn] = {false}; // 记录是否不是根结点,初始均是根结点
int n, num = 0; // n为结点个数,num为当前已经输出的结点个数
// print函数输出结点id的编号
void print(int id) {
printf("%d", id); // 输出id
num++; // 已经输出的结点个数加1
if(num < n) printf(" "); // 最后一个结点不输出空格
else printf("\n");
}
// 中序遍历
void inOrder(int root) {
if(root == -1) {
return;
}
inOrder(Node[root].lchild);
print(root);
inOrder(Node[root].rchild);
}
// 层序遍历
void BFS(int root) {
queue<int> q; //注意队列里是存地址
q.push(root); //将根结点地址入队
while(!q.empty()) {
int now = q.front(); //取出队首元素
q.pop();
print(now);
if(Node[now].lchild != -1) q.push(Node[now].lchild); //左子树非空
if(Node[now].rchild != -1) q.push(Node[now].rchild); //右子树非空
}
}
// 后序遍历,用以反转二叉树
//void postOrder(int root) {
// if(root == -1) {
// return;
// }
// postOrder(Node[root].lchild);
// postOrder(Node[root].rchild);
// swap(Node[root].lchild, Node[root].rchild); // 交换左右孩子
//}
// 前序遍历,用以反转二叉树
void preOrder(int root) {
if(root == -1) {
return;
}
swap(Node[root].lchild, Node[root].rchild); // 交换左右孩子
preOrder(Node[root].lchild);
preOrder(Node[root].rchild);
}
// 将输入的字符转换为-1或者结点编号
int strToNum(char c) {
if(c == '-') return -1; // “-”表示没有孩子结点,记为-1
else {
notRoot[c - '0'] = true; // 标记c不是根结点
return c - '0'; // 返回结点编号
}
}
// 寻找根结点编号
int findRoot() {
for(int i = 0; i < n; i++) {
if(notRoot[i] == false) {
return i; // 是根结点,返回i
}
}
}
int main() {
char lchild, rchild;
scanf("%d", &n); // 结点个数
for(int i = 0; i < n; i++) {
scanf("%*c%c %c", &lchild, &rchild); // 左右孩子
Node[i].lchild = strToNum(lchild);
Node[i].rchild = strToNum(rchild);
}
int root = findRoot(); // 获得根结点编号
// postOrder(root); // 后序遍历,反转二叉树
preOrder(root); // 前序遍历,反转二叉树
BFS(root); // 输出层序遍历序列
num = 0; // 已输出的结点个数置0
inOrder(root); // 输出中序遍历序列
return 0;
}

PAT Advanced 1102 Invert a Binary Tree (25) [树的遍历]的更多相关文章

  1. PAT甲级——1102 Invert a Binary Tree (层序遍历+中序遍历)

    本文同步发布在CSDN:https://blog.csdn.net/weixin_44385565/article/details/90577042 1102 Invert a Binary Tree ...

  2. 1102. Invert a Binary Tree (25)

    The following is from Max Howell @twitter: Google: 90% of our engineers use the software you wrote ( ...

  3. PAT (Advanced Level) 1102. Invert a Binary Tree (25)

    简单题. #include<cstdio> #include<cstring> #include<cmath> #include<vector> #in ...

  4. PAT甲题题解-1102. Invert a Binary Tree (25)-(建树,水题)

    就是把输入给的左孩子右孩子互换一下,然后输出层次遍历和中序遍历. #include <iostream> #include <algorithm> #include <c ...

  5. 【PAT甲级】1102 Invert a Binary Tree (25 分)(层次遍历和中序遍历)

    题意: 输入一个正整数N(<=10),接着输入0~N-1每个结点的左右儿子结点,输出这颗二叉树的反转的层次遍历和中序遍历. AAAAAccepted code: #define HAVE_STR ...

  6. PAT (Advanced Level) 1110. Complete Binary Tree (25)

    判断一棵二叉树是否完全二叉树. #include<cstdio> #include<cstring> #include<cmath> #include<vec ...

  7. PAT 1102 Invert a Binary Tree[比较简单]

    1102 Invert a Binary Tree(25 分) The following is from Max Howell @twitter: Google: 90% of our engine ...

  8. 1102 Invert a Binary Tree——PAT甲级真题

    1102 Invert a Binary Tree The following is from Max Howell @twitter: Google: 90% of our engineers us ...

  9. PAT 1102 Invert a Binary Tree

    The following is from Max Howell @twitter: Google: 90% of our engineers use the software you wrote ( ...

随机推荐

  1. Netty 中队列的使用

    任务队列中的Task有3种典型使用场景 用户程序自定义的普通任务 此前代码: 参考https://www.cnblogs.com/ronnieyuan/p/12016712.html NettySer ...

  2. 转载-- SQL连接查询2 外连接(左右联接查询)

    http://www.cnblogs.com/zhangqs008/archive/2010/07/02/2341196.html 外连接主要包括左连接.右连接和完整外部连接. 1)左连接:Left ...

  3. springboot启动微服务项目时,启动后没有端口号信息,也访问不了

    2018-06-05 13:43:42.282 [localhost-startStop-1] DEBUG org.apache.catalina.core.ContainerBase - Add c ...

  4. Python安装bs4

    - 需要将pip源设置为国内源,阿里源.豆瓣源.网易源等 - windows (1)打开文件资源管理器(文件夹地址栏中) (2)地址栏上面输入 %appdata% (3)在这里面新建一个文件夹 pip ...

  5. 第四篇Django之模板语言

    Django之模板语言 一 模板的执行 模板的创建过程,对于模板,其实就是读取模板(其中嵌套着模板的标签),然后将Model中获取的数据插入到模板中,最后将信息返回给用户 def current_da ...

  6. Day 19:Properties配置文件类、打印流(printStream) 、 编码与解码

    Properties(配置文件类): 主要用于生产配置文件与读取配置文件的信息. Properties要注意的细节:  1. 如果配置文件的信息一旦使用了中文,那么在使用store方法生成配置文件的时 ...

  7. 新版本vue-cli3.x 无法热更新问题【转载】

    版权声明:本文为博主原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明. 本文链接:https://blog.csdn.net/weixin_38644883/articl ...

  8. zTree的学习

    最近要做一个有关权限的东西,原理和数据库都已经知道了,就是树状图困难. 原先是打算用layui的,因为我孤陋寡闻……吃了大亏,弄了3个小时,屁都没有.只能说是…… 后来百度找到了zTree,进去学习了 ...

  9. (排序)P1068 分数线划定

    题解: 需要注意的是,快排完之后并不是按照编号从小到大的顺序输出 #include<iostream>using namespace std;int r=0;void swap(int & ...

  10. TypeScript 文件引入 Html (ts import html webpack)

    我们的目标是把html引入ts文件,webpack打包时就能把html打进js文件,减少文件加载啦 1 安装 text-loader npm install text-loader --save-de ...