设为首页 加入收藏

TOP

树2. List Leaves (25)
2015-08-31 21:23:03 来源: 作者: 【 】 浏览:15
Tags:List Leaves

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:


Sample Output:



#include
#include


#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;
}


】【打印繁体】【投稿】【收藏】 【推荐】【举报】【评论】 【关闭】 【返回顶部
分享到: 
上一篇二叉树的遍历:先序中序后序遍历.. 下一篇树4. Root of AVL Tree-平衡查找..

评论

帐  号: 密码: (新用户注册)
验 证 码:
表  情:
内  容: