`

poj—2255

 
阅读更多

    这题要是做数据结构的练习题挺好的。就是给出前序和中序序列,要求后序序列。在先序序列中,第一个元素为二叉树的根,之后为它的左子树和右子树的先序序列;在中序序列中,先是左子树的中序序列,然后是根,再就是右子树的中序序列。由此就可以递归的建立起这棵二叉树了。
递归有时真的很美。。。

Node* create(const string& pres,const string& ins)
{
    Node* root;

    if(pres.length()>0)
    {
        root=new Node;
        root->data=pres[0];
        int index=ins.find(root->data);
        root->left=create(pres.substr(1,index),ins.substr(0,index));
        root->right=create(pres.substr(index+1),ins.substr(index+1));
    }
    else root=NULL;

    return root;
}

 

 

具体代码如下:

 

#include<iostream>
#include<string>
using namespace std;
struct node
{
	char data;
	node *lchirld;
	node *rchirld;
};
node *create(string pre,string in)
{
	node *root;
	root=NULL;
	if(pre.length()>0)
	{
		root=new node;
		root->data=pre[0];
		int index=in.find(root->data);
		root->lchirld=create(pre.substr(1,index),in.substr(0,index));
		root->rchirld=create(pre.substr(index+1),in.substr(index+1));
	}
	return root;
}
void postorder(node *&root)
{
	if(root!=NULL)
	{
		postorder(root->lchirld);
		postorder(root->rchirld);
		cout<<root->data;
	}
}
int main()
{
	string pre,in;
	while(cin>>pre>>in)
	{
		node *root;
		root=create(pre,in);
		postorder(root);
		cout<<endl;
	}
	return 0;
}

 

另外在本题中用到了string文件库的两个函数find()与substr();

具体解释如下:

是s.find(args)在S中查找args第一次出现的位置下标。而substr()有以下几种操作

1、s.substr(pos,n) 返回一个string类型的字符串,它包含s中从下标pos开始的n个字符。

2、s.substr(pos) 返回一个string类型的字符串,它包含从下标pos开始到s末尾的所有字符。

3.s.substr()返回s的副本。

分享到:
评论

相关推荐

    poj2255题目

    poj2255代码8 4 给你前序遍历和中序遍历求后续遍历

    POJ2255-Tree Recovery

    【标题】"POJ2255-Tree Recovery" 是一个来自北京大学在线判题系统POJ(Problem Set of Peking University)的编程题目。这个题目主要涉及到数据结构和图论的知识,尤其是树的恢复问题。 【描述】"北大POJ2255-Tree...

    POJ 2255 java

    提示:二叉树遍历而已,给出前序和中序,求后序 解题思路 1、前序遍历的第一个字母必是 根 2、在中序遍历的字母串中找出 根字母,那么根字母左右两边的字符串就分别是它的左、右子树 3、利用递归复原二叉树(把...

    poj 2255 Tree Recovery

    建树,树的遍历访问,联系数据结构不错的题目

    poj中难度较小的题目

    4. poj3006、poj2255、poj3094(可能的题目类型:字符串处理):这类题目可能需要对字符串进行操作,如查找子串、替换、统计字符出现次数等,可能会用到字符串处理函数。 除了POJ的题目,还有浙江大学ACM集训队的...

    POJ 分类题目

    - poj2255 - **应用场景**:适用于可以被分解为子问题的复杂问题,如快速排序、归并排序、汉诺塔问题等。 **4. 递推** - **定义**:递推是指根据已知的基础情况和递推关系,逐步计算出未知的情况。 - **示例题目**...

    北大acm试题

    构造法和模拟法在poj3006、poj2255、poj3094等题目中有所涉及。 二、图算法 图算法在ACM竞赛中占据重要地位,包括深度优先遍历、广度优先遍历、最短路径算法(如Dijkstra、Bellman-Ford、Floyd和堆+Dijkstra)、...

    ACM训练方案

    3. 递归和分治法:将问题分解为较小的子问题解决,如poj2255。 4. 递推:利用前一步的结果推导出下一步,如poj3295。 5. 构造法:直接构造符合要求的解,如poj1503。 6. 模拟法:按照现实或理论过程进行仿真,如poj...

    算法学习攻略

    最后,建议在OJ(在线判题)平台上进行练习,如POJ提供的水题,如poj3299、poj2159、poj2739、poj1083、poj2262、poj1503、poj3006、poj2255、poj3094等,这些题目可以帮助巩固基础,增强信心。 通过系统地学习和...

    POJ各题算法分类和题目推荐 ACM必看

    * 中短代码:1014、1281、1618、1928、1961、2054、2082、2085、2213、2214、2244、2247、2255、2257、2258、2260、2265、2272、2273、2275、2287、2299、2329、2376 * 中等代码量:1001、1018、1037、1039、1054、...

    poj题目分类...

    * 2255 Tree Recovery * 2084 Game of Connections * 1906 Three powers * 1835 宇航员 * 1799 Yeehaa! * 1607 Deck * 1244 Slots of Fun * 1269 Intersecting Lines * 1299 Polar Explorer * 1183 反正切函数的应用...

    POJ PKU 必做题+部分难题1001-2500

    1129 1149 1154 1165 1182 1185 1190 1191 1201 1251 1273 1275 1276 1286 1322 1338 1363 1364 1401 1456 1459 1564 1579 1637 1657 1658 1679 ...2104 2112 2115 2186 2255 2352 2369 2406 2409 2421 2479 2480 2498

    acm poj 源代码

    1001 1002 1003 1004 1005 1006 1007 1008 1011 1012 1013 1014 1015 1017 ...2255 2286 2304 2352 2356 2362 2363 2377 2385 2386 2388 2392 2395 2406 2411 2418 2421 2441 2479 2485 2487 2488 2506 2513 2521 2524 ...

    KM匹配题集

    - **【HDU 2255】奔小康赚大钱**:可能需要利用KMP算法解决字符串匹配问题,寻找特定模式的出现次数。 - **【HDU 1533】Going Home**:同样是字符串匹配,可能需要求解最短的匹配长度或找出所有匹配位置。 - **【HDU...

Global site tag (gtag.js) - Google Analytics