careercup4.7

深搜,再匹配

/*Given a binary search tree, design an algorithm which creates a  linked list of all the
nodes at each depth (eg, if you have a tree with depth D, you’ll have D linked lists)  
*/
#include <iostream>
#include <string>
#include <sstream>
using namespace std;

class Node{
public:
	int data;
    Node *lchild,*rchild;
	Node(int a=0, Node* l= 0, Node* r = 0):data(a),lchild(l),rchild(r){}
};

class Tree{
public:
	Node* root;
	Tree():root(0){}
	Tree(int ar[],int l){
		root = 0;
		for(int i = 0; i<l; i++)
			insert(ar[i]);
	}
	void insert(int);
	bool is_empty(){ return !root;}
	void preorder(Node*,string&);
	void destroy(Node*);
};

void Tree::insert(int k){
	if(is_empty())
		root = new Node(k);
	else{
		Node* temp = root;
		Node* parent;
		while(temp){
			parent =temp;
			if(temp->data > k)
				temp = temp->lchild;
			else temp = temp->rchild;
		}
		temp = new Node(k);
		if(parent->data > k)
			parent->lchild = temp;
		else parent->rchild = temp;
	}
}

void Tree::preorder(Node* r,string& st)
{
	if(r){
		preorder(r->lchild,st);
		stringstream ss;
		ss<<r->data;
		st = st + " "+ss.str();
		preorder(r->rchild,st);
	}
}

void Tree::destroy(Node* r){
	if(r){
		destroy(r->lchild);
		destroy(r->rchild);
		delete r;
	}
}

int main(){
	int ar[]={16,423,5,67,8,9,45,78,777,33,12,11,76,4,43,7};
	int a2[]={67,45,33,43,78,76};
	Tree ll(ar,16);
	Tree l2(a2,6);
	string st1="",st2="";
	ll.preorder(ll.root,st1);
	l2.preorder(l2.root,st2);
	int found = st1.find(st2);
	if(found != string::npos)
		cout<<"True"<<endl;
	else cout<<"Flase"<<endl;

	ll.destroy(ll.root);
	l2.destroy(l2.root);
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值