首页 > 代码库 > sicily 1156 二叉树的遍历 前序遍历,递归,集合操作

sicily 1156 二叉树的遍历 前序遍历,递归,集合操作

1156. Binary tree

Constraints

Time Limit: 1 secs, Memory Limit: 32 MB

Description

Your task is very simple: Given a binary tree, every node of which contains one upper case character (‘A’ to ‘Z’); you just need to print all characters of this tree in pre-order.

Input

 

Input may contain several test data sets.

      For each test data set, first comes one integer n (1 <= n <= 1000) in one line representing the number of nodes in the tree. Then n lines follow, each of them contains information of one tree node. One line consist of four members in order: i (integer, represents the identifier of this node, 1 <= i <= 1000, unique in this test data set), c (char, represents the content of this node described as above, ‘A’ <= c <= ‘Z’), l (integer, represents the identifier of the left child of this node, 0 <=  l <= 1000, note that when l is 0 it means that there is no left child of this node), r (integer, represents the identifier of the right child of this node, 0 <=  r <= 1000, note that when r is 0 it means that there is no right child of this node). These four members are separated by one space.

      Input is ended by EOF.

      You can assume that all inputs are valid. All nodes can form only one valid binary tree in every test data set.

 

Output

For every test data set, please traverse the given tree and print the content of each node in pre-order. Characters should be printed in one line without any separating space.

Sample Input

34 C 1 31 A 0 03 B 0 011000 Z 0 031 Q 0 22 W 3 03 Q 0 0

Sample Output

CABZQWQ

Problem Source

ZSUACM Team Member

 

#include <iostream>#include <cstring>#include <set>#include <vector>#include <algorithm>using namespace std;typedef struct treeNode {	int id;	char value;	int left;	int right;} treeNode;//前序遍历二叉树 void pre_search(int number, treeNode *nodes, int id, string &result) {	for (int i = 0; i < number; i++) {//对于每个节点均需搜索节点数组来确定其在数组中的该节点 		if (nodes[i].id == id) {			result.push_back(nodes[i].value);			if (nodes[i].left != 0)				pre_search(number, nodes, nodes[i].left, result);//遍历做左节点 			if (nodes[i].right != 0)				pre_search(number, nodes, nodes[i].right, result);//遍历右节点 		}	}}int main() {	int number;	while (cin >> number) {		int id, left, right;		treeNode *nodes = new treeNode[number];		//memset(nodes, NULL, sizeof(nodes));		char value;				for (int i = 0; i < number; i++) {			cin >> id >> value >> left >> right;			nodes[i].id = id;			nodes[i].value = http://www.mamicode.com/value;>

  

sicily 1156 二叉树的遍历 前序遍历,递归,集合操作