我是靠谱客的博主 干净短靴,最近开发中收集的这篇文章主要介绍UVA 699 The Falling LeavesUVA 699 The Falling Leaves,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

UVA 699 The Falling Leaves

题意 输入一棵树,把垂直方向上同一位置的叶子节点值加以来,最后逐个输出

思路 题目中是按前序输入树,所以就按前序来建立一棵树,之后建一个数组,从数组中间开始存,每次访问左节点就把数组往左存,访问右节点就往右,最后输出储存的数组即可

代码
#include <stdio.h>
#include <stdlib.h>
#include <string.h>

int num[1000];
int output[1000];
typedef struct node  
{   
    int t;
    int data; 
    struct node *rchild; 
    struct node *lchild; 
} BTNode; 

BTNode *create(int tt) 
{ 
    BTNode *root; 
    int ro; 
    scanf("%d",&ro); 
    if(ro == -1) 
	root = NULL; 
    else
    { 
	num[tt] += ro;
	root = (BTNode *)malloc(sizeof(BTNode)); 
	root -> data = ro;
	root -> lchild=create(tt - 1); 
	root -> rchild=create(tt + 1); 
    } 
    return root; 
} 

int main() 
{
    int ttt = 1;
    while (1)
    { 
	BTNode *t;
	int j = 0;
	memset(num, 0, sizeof(num));
	t = create(500); 
	if (t == NULL)
	    break;
	for (int i = 0 ; i < 1000; i ++)
	{
	    if (num[i])
		output[j++] = num[i];
        }
	printf("Case %d:n", ttt ++);
	for (int i = 0; i < j - 1; i ++)
	    printf("%d ", output[i]);
	printf ("%dn", output[j - 1]);
	printf("n");
    }
    return 0; 
}


最后

以上就是干净短靴为你收集整理的UVA 699 The Falling LeavesUVA 699 The Falling Leaves的全部内容,希望文章能够帮你解决UVA 699 The Falling LeavesUVA 699 The Falling Leaves所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(59)

评论列表共有 0 条评论

立即
投稿
返回
顶部