03-树2 List Leaves (25 分)

03-树2 List Leaves (25 分),第1张

03-树2 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 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

结尾无空行

#include 
#include 
#include 
#include  
using namespace std;
struct node{
	int ltree,rtree;
};
int buildtree(vector  &a,int n);
int main()
{
	int n;
	cin >> n;
	vector  tree(n);
	int head = buildtree(tree,n);
	queue  bfs;
	queue  result;
	bfs.push(head);
	while(!bfs.empty()){
		int frontnode = bfs.front();
		bfs.pop();
		if(tree[frontnode].ltree==-1&&tree[frontnode].rtree==-1)
			result.push(frontnode);
		if(tree[frontnode].ltree!=-1)
			bfs.push(tree[frontnode].ltree);
		if(tree[frontnode].rtree!=-1)
			bfs.push(tree[frontnode].rtree);
	}
	cout << result.front();
    result.pop();
    while(!result.empty())
    {
        cout << " " << result.front();
        result.pop();
    }
	return 0;
} 
int buildtree(vector  &a,int n)
{
	int head = -1;
	vector ishead(n);
	char c;
	for(int i = 0;i < n;i++){
		cin >> c;
		if(c == '-')
			a[i].ltree = -1;
		else{
			a[i].ltree = c - '0';
			ishead[c - '0'] = 1;
		}
		cin >> c;
		if(c == '-')
			a[i].rtree = -1;
		else{
			a[i].rtree = c - '0';
			ishead[c - '0'] = 1;
		}
	}
	for(int i = 0;i < n;i++)
		if(ishead[i]==0)
			head = i;
	return head;
}

欢迎分享,转载请注明来源:内存溢出

原文地址:https://54852.com/zaji/5658503.html

(0)
打赏 微信扫一扫微信扫一扫 支付宝扫一扫支付宝扫一扫
上一篇 2022-12-16
下一篇2022-12-16

发表评论

登录后才能评论

评论列表(0条)

    保存