pat03-树2. List Leaves (25)

03-树2. List Leaves (25)

时间限制

400 ms

内存限制

65536 kB

代码长度限制

8000 B

判题程序

Standard

作者

CHEN, Yue

Given a tree, you are supposed to list all the leaves in the order of top down, and left to right.

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, and gives the indices of the left 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 one line all the leaves‘ indices in the order of top down, and left to right. 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:

4 1 5


提交代码

  1 #include<cstdio>
  2 #include<algorithm>
  3 #include<iostream>
  4 #include<cstring>
  5 #include<stack>
  6 #include<queue>
  7 #include<vector>
  8 using namespace std;
  9 struct node{
 10     int l,r,f;
 11     node(){
 12         l=r=f=-1;
 13     }
 14 };
 15 node tree[10];
 16 /*void prefind(int h){//检验程序
 17     cout<<h<<endl;
 18     if(tree[h].l>=0)
 19         prefind(tree[h].l);
 20     if(tree[h].r>=0)
 21         prefind(tree[h].r);
 22 }*/
 23 int main(){
 24     //freopen("D:\\INPUT.txt","r",stdin);
 25     //freopen("D:\\OUTPUT.txt","w",stdout);
 26     int n;
 27     string s;
 28     scanf("%d",&n);
 29
 30     //cout<<n<<endl;
 31
 32     int i,num,j;
 33
 34     /*for(i=0;i<n;i++){
 35         cout<<"f: "<<tree[i].f<<endl;
 36         cout<<"l: "<<tree[i].l<<endl;
 37         cout<<"r: "<<tree[i].r<<endl;
 38     }*/
 39
 40
 41    for(i=0;i<n;i++){
 42         cin>>s;
 43         if(s!="-"){
 44            num=0;
 45            j=0;
 46            while(j<s.length()){
 47               num*=10;
 48               num+=s[j++]-‘0‘;
 49            }
 50            tree[i].l=num;
 51            tree[num].f=i;
 52         }
 53         cin>>s;
 54         if(s!="-"){
 55            num=0;
 56            j=0;
 57            while(j<s.length()){
 58               num*=10;
 59               num+=s[j++]-‘0‘;
 60            }
 61            tree[i].r=num;
 62            tree[num].f=i;
 63         }
 64     }
 65     int h;
 66     for(i=0;i<n;i++){
 67         if(tree[i].f<0){
 68             h=i;
 69             break;
 70         }
 71     }
 72
 73     //cout<<h<<endl;
 74     //prefind(h);
 75
 76     int p;
 77     queue<int> q,qq;
 78     q.push(h);
 79     while(!q.empty()){
 80         p=q.front();
 81         q.pop();
 82
 83         //cout<<p<<endl;
 84
 85         if(tree[p].l>=0||tree[p].r>=0){
 86             if(tree[p].l>=0)
 87                q.push(tree[p].l);
 88             if(tree[p].r>=0)
 89                q.push(tree[p].r);
 90         }
 91         else{
 92             qq.push(p);
 93         }
 94     }
 95
 96     //cout<<h<<endl;
 97
 98     if(!qq.empty()){
 99         printf("%d",qq.front());
100         qq.pop();
101     }
102     while(!qq.empty()){
103         printf(" %d",qq.front());
104         qq.pop();
105     }
106     printf("\n");
107     return 0;
108 }
时间: 2024-10-23 01:00:34

pat03-树2. List Leaves (25)的相关文章

03-树2. List Leaves (25) 二叉树的层序遍历

03-树2. List Leaves (25) 题目来源:http://www.patest.cn/contests/mooc-ds/03-%E6%A0%912 Given a tree, you are supposed to list all the leaves in the order of top down, and left to right. Input Specification: Each input file contains one test case. For each

PTA 树的同构(25 分)

7-1 树的同构(25 分) 给定两棵树T1和T2.如果T1可以通过若干次左右孩子互换就变成T2,则我们称两棵树是"同构"的.例如图1给出的两棵树就是同构的,因为我们把其中一棵树的结点A.B.G的左右孩子互换后,就得到另外一棵树.而图2就不是同构的. 图1 图2 现给定两棵树,请你判断它们是否是同构的. 输入格式: 输入给出2棵二叉树树的信息.对于每棵树,首先在一行中给出一个非负整数N (≤10),即该树的结点数(此时假设结点从0到N?1编号):随后N行,第i行对应编号第i个结点,给出

PAT03-树1. List Leaves (25)

Given a tree, you are supposed to list all the leaves in the order of top down, and left to right. 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

7-1 树的同构 (25 分)

题目 : 给定两棵树T1和T2.如果T1可以通过若干次左右孩子互换就变成T2,则我们称两棵树是"同构"的.例如图1给出的两棵树就是同构的,因为我们把其中一棵树的结点A.B.G的左右孩子互换后,就得到另外一棵树.而图2就不是同构的. 图一: 图二: 现给定两棵树,请你判断它们是否是同构的. 输入格式: 输入给出2棵二叉树树的信息.对于每棵树,首先在一行中给出一个非负整数N (≤10),即该树的结点数(此时假设结点从0到N?1编号):随后N行,第i行对应编号第i个结点,给出该结点中存储的1

7-3 树的同构 (25 分)

题目地址: https://pintia.cn/problem-sets/15/problems/711 解决方法: 要判断树是否是同构,判定存储相同信息的节点的孩子(或父节点)是否一致即可; 推荐用结构体数组存储树  : 输入的节点  下标依次为 0 ==> n-1 根节点的判断:根据题目输入信息为 节点信息  左孩子 右孩子 :因此 孩子信息内没出现过的点即为根节点 样例分析 :以判断节点的父节点进行说明 根据两棵树对应的输入信息得出下表  LEFT A B C D E G G H Inde

List Leaves (25)

要按从上到下,从左到右的顺序查找叶子节点,可以采用广度优先搜索的办法 #include <iostream> #include <queue> using namespace std; typedef struct{ int loc; int left; int right; }unit; int n; unit* a; int father(int); void printLeaf(int); int main() { cin >> n; getchar(); a =

PAT树_层序遍历叶节点、中序建树后序输出、AVL树的根、二叉树路径存在性判定、奇妙的完全二叉搜索树、最小堆路径、文件路由

<pre class="code"><span style="font-family: %value; font-size: 14px;">03-树1. List Leaves (25) Given a tree, you are supposed to list all the leaves in the order of top down, and left to right. Input Specification: Each inpu

51Nod 1272最大距离 (树状数组维护前缀最小值)

题目链接 最大距离 其实主流解法应该是单调栈--我用了树状数组. 1 #include <bits/stdc++.h> 2 3 using namespace std; 4 5 #define rep(i, a, b) for (int i(a); i <= (b); ++i) 6 7 const int N = 100010; 8 9 struct node{ 10 int x, y; 11 friend bool operator < (const node &a, c

poj 3841 Double Queue (AVL树入门)

1 /****************************************************************** 2 题目: Double Queue(poj 3481) 3 链接: http://poj.org/problem?id=3481 4 算法: avl树(入门) 5 *******************************************************************/ 6 #include<cstdio> 7 #inclu