03-树2 List Leaves (25 分)

本文介绍了一种算法,用于按从上到下、从左到右的顺序遍历树结构,并列出所有叶节点的索引。通过输入节点数量及各节点的左右子节点信息,实现了树模型的构建和叶节点的遍历打印。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >


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

题目大意: 通过输入节点数以及每个节点的左儿子和右儿子,从上到下打印出叶节点。
题目关键:要理解输入的第几行就是代表该节点的值为几。例如样例输入中第0行的1 -代表值为0的节点左孩子的值为1,即指向第1行,右孩子为空(-1)
树模型如下:
在这里插入图片描述

Code(C++)

#include <cstdio>
#include <cctype>

#define N 10

typedef struct Node
{
    int data, left, right;
} TreeNode;
TreeNode node[N];
TreeNode Queue[N];          //数组实现队列

int first = -1, last = -1;

void Push(TreeNode tn);
TreeNode Pop();
void printLeaves(int root, int n);

int charToInt(char ch);

int main()
{
    int n;
    bool isRoot[N];
    int root;

scanf("%d\n", &n);
for (int i = 0; i < n; i++)
    isRoot[i] = 1;
for (int i = 0; i < n; i++)
{
    char cLeft, cRight;
    scanf("%c %c", &cLeft, &cRight);
    getchar();      //读取缓存区的回车符
    node[i].left = charToInt(cLeft);
    node[i].right = charToInt(cRight);
    node[i].data = i;
    //一个节点的左孩子和右孩子一定不是根节点
    if (node[i].left != -1)
        isRoot[node[i].left] = 0;
    if (node[i].right != -1)
        isRoot[node[i].right] = 0;
}
//找到根节点
for (int i = 0; i < n; i++)
{
    if (isRoot[i])
    {
        root = i;
        break;
    }
}
printLeaves(root, n);

return 0;

}

void Push(TreeNode treeNode)
{
    Queue[++last] = treeNode;
}

TreeNode Pop()
{
    return Queue[++first];
}

//层序遍历树节点并打印出叶节点:队列实现
void printLeaves(int root, int n)
{
    int leaves[N];
    int k = 0;
    Push(node[root]);
    for (int i = 0; i < n; i++)
    {
        TreeNode tn = Pop();
        //左孩子和右孩子都不存在时,将叶节点的值保存到数组中,便于格式化打印
        if (tn.left == -1 && tn.right == -1)
            leaves[k++] = tn.data;
        if (tn.left != -1)
            Push(node[tn.left]);
        if (tn.right != -1)
            Push(node[tn.right]);
    }
    for (int i = 0; i < k-1; i++)
        printf("%d ", leaves[i]);
    printf("%d\n", leaves[k-1]);
}

int charToInt(char ch)
{
    if (isdigit(ch))
        return ch - '0';
    else
        return -1;
}

Code(C)

#include<stdio.h>
#include<stdlib.h>
#define MAXSIZE 15
typedef struct Node {
	char right;
	char left;
}node;
 
typedef struct line {
	int b[MAXSIZE];
	int f;
	int r;
}Line,*qLine;
 
typedef struct nodes{
	node a[MAXSIZE];
}Nodes, *qNode;
 
void Push(qLine *p, int X);
int Pop(qLine *p);
int main()
{
	
int count = 0;
scanf("%d\n", &count);

qNode q = (Nodes *)malloc(sizeof(Nodes));
for (int i = 0;i < count;i++) {
	scanf("%c %c ",&q->a[i].left, &q->a[i].right);
}
int top = 0,n=0;
for (int i = 0;i < count;i++) {
	for (int j = 0;j < count;j++) {
		if (top == q->a[j].left-'0' || top == q->a[j].right-'0') {
			top = j;
			n = 0;
			break;
		}
		n++;
		
}
if (n >= count - 1) {
	break;
}

}
 
qLine p = (Line *)malloc(sizeof(Line));
p->f = 0;
p->r = 0;
Push(&p,top);

 
int l = 0;
	while (top!=-1)
	{
		l++;
		top = Pop(&p);
		if (q->a[top].left != '-') {
			Push(&p, (q->a[top].left - '0'));
		}
		if (q->a[top].right != '-') {
			Push(&p, (q->a[top].right - '0'));
		}
		if (q->a[top].left == '-'&&q->a[top].right == '-') {
			if (l != count) {
				printf("%d ", top);
			}
			else {
				printf("%d", top);
			}
		}
	}
 

return 0;

}
 
 
void Push(qLine *p,int X) {
	if (((*p)->r- (*p)->f + 1+ MAXSIZE) % MAXSIZE != 0) {
		(*p)->r++;
		(*p)->b[(*p)->r] = X;
		
}

}
 
int Pop(qLine *p) {
	int j = -1;
		if ((*p)->f!=(*p)->r) {
			(*p)->f++;
			j=(*p)->b[(*p)->f];
			
}

return j;

}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值