码迷,mamicode.com
首页 > 其他好文 > 详细

POJ 1577 Falling Leaves 二叉树题解

时间:2014-07-06 09:54:52      阅读:239      评论:0      收藏:0      [点我收藏+]

标签:blog   数据   2014   for   io   line   

给出按最底层叶子节点到根节点的数据,然后要求重建树,前序输出最终建的树。

都是两个基本操作解决:

1 二叉树插入操作

2 前序遍历

简单题目了。


#include <stdio.h>
#include <string>
#include <algorithm>
#include <vector>
using std::vector;
using std::string;

const int MAX_B = 1024;
char buf[MAX_B];
int id = 0, len = 0;

inline char getFromBuf()
{
	if (id >= len)
	{
		len = fread(buf, 1, MAX_B, stdin);
		id = 0;
	}
	return buf[id++];
}

void getStrFromBuf(string &n)
{
	char a = getFromBuf();
	while ((a == ' ' || a == '\n') && len) a = getFromBuf();
	
	n.clear();
	while ((a != ' ' && a != '\n') && len)//老是写&&,错成||
	{
		n.push_back(a);
		a = getFromBuf();
	}
}

struct Node
{
	char alpha;
	Node *left, *right;
	explicit Node (char a = ' ') : alpha(a), left(NULL), right(NULL) {}
};

Node *insertNode(Node *root, char a)
{
	if (!root) return new Node(a);

	if (a < root->alpha) root->left = insertNode(root->left, a);
	else root->right = insertNode(root->right, a);
	return root;
}

void printTree(Node *r)
{
	if (r)
	{
		putchar(r->alpha);
		printTree(r->left);
		printTree(r->right);
	}
}

void releaseTree(Node *r)
{
	if (r)
	{
		releaseTree(r->left);
		releaseTree(r->right);
		delete r; r = NULL;
	}
}

int main()
{
	string s;
	while (true)
	{
		getStrFromBuf(s);
		if (len == 0 || s == "$") break;

		vector<string> vstr;
		while (s != "*" && s != "$")
		{
			vstr.push_back(s);
			getStrFromBuf(s);
		}
		Node *root = NULL;
		for (int i = (int)vstr.size() - 1; i >= 0 ; i--)
		{
			for (int j = 0; j < (int)vstr[i].size(); j++)
			{
				root = insertNode(root, vstr[i][j]);
			}
		}
		printTree(root);
		releaseTree(root);
		putchar('\n');
	}
	return 0;
}




POJ 1577 Falling Leaves 二叉树题解,布布扣,bubuko.com

POJ 1577 Falling Leaves 二叉树题解

标签:blog   数据   2014   for   io   line   

原文地址:http://blog.csdn.net/kenden23/article/details/36886529

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!