careercup4.5

/*Write an algorithm to find the ‘next’ node (i e , in-order successor) of a given node in 
a binary search tree where each node has a link to its parent
*/
#include <iostream>
#include <iterator>
#include <algorithm>
using namespace std;

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

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*);
	void successor(Node*);
	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,parent);
		if(parent->data>k)
			parent->lchild = temp;
		else parent->rchild = temp;
	}
}

void Tree::preorder(Node* r)
{
	if(r){
		preorder(r->lchild);
		cout<<r->data<<" ";
		preorder(r->rchild);
	}
}

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

void Tree::successor(Node*r){
	while(r)
	{
		if(r->rchild){
			r = r->rchild;
			while(r->lchild)
				r = r->lchild;
			cout<<r->data<<endl;
		}
		Node* y = r->parent;
		while(y && r == y->rchild){
			r = y;
			y = y->parent;
		}
		r = y;
		if(r)cout<<r->data<<endl;
	}
}

int main(){
	int ar[]={16,423,5,67,8,9,45,78,777,33,12,11,76,4,43,7};
	Tree ll(ar,16);
	ll.preorder(ll.root);
	cout<<endl;
	ll.successor(ll.root);
	ll.destroy(ll.root);
}

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值