树的遍历(完全二叉树)

完全二叉树可以用一个数组表示;

问题 A: 树查找

[命题人 : 外部导入]

时间限制 : 1.000 sec  内存限制 : 32 MB
解决 : 224  提交 : 390

题目描述

有一棵树,输出某一深度的所有节点,有则输出这些节点,无则输出EMPTY。该树是完全二叉树。

输入

 

输入有多组数据。
每组输入一个n(1<=n<=1000),然后将树中的这n个节点依次输入,再输入一个d代表深度。

 

输出

 

输出该树中第d层得所有节点,节点间用空格隔开,最后一个节点后没有空格。

 

样例输入 Copy

5
1 2 3 4 5 
7
7
1 2 3 4 5 6 7 
2
0

样例输出 Copy

EMPTY
2 3

 

#include 
#include 
#include 
#include
using namespace std;
int main ()
{
    int n,d;
    while(cin>>n)
    {
        if(n==0)
            break;
        int a[n];
        for(int i=1; i<=n; i++)
        {
            scanf("%d",&a[i]);
        }
        scanf("%d",&d);
        int e = pow(2, d);
        if(e>n)
            e=n+1;
        int s= pow(2, d-1);
        if(s>n)
            printf("EMPTY\n");
        else
        {
            for(int i=s; i

 

你可能感兴趣的:(算法)