码迷,mamicode.com
首页 > 编程语言 > 详细

二叉排序树(c++实现)

时间:2015-04-16 23:49:18      阅读:372      评论:0      收藏:0      [点我收藏+]

标签:二叉排序树   c++   

#include <iostream>
using namespace std;
class btree
{
public:
	btree *left;
	btree *right;
	int data;
    btree(int i):left(NULL),right(NULL),data(i){}
    ~btree();

	void insert(int a);
	static void inorder(const btree*);//中序遍历
	static void rinorder(const btree*);//中序遍历,先遍历右子树

};
void btree::insert(int a)
{
	if (a<data && left)
		left->insert(a);
	else if (a<data && !left)
		left=new btree(a);
	else if (a>data && right)
		right->insert(a);
	else if (a>data && !right)
		right=new btree(a);
}

void btree::inorder(const btree* b)
{
   if (b != NULL)
   {
   	  inorder(b->left);
   	  cout<<b->data<<" ";
   	  inorder(b->right);
   }
}

void btree::rinorder(const btree* b)
{
   if (b != NULL)
   {
   	  rinorder(b->right);
   	  cout<<b->data<<" ";
   	  rinorder(b->left);
   }
}
btree::~btree()
{
	if (left)
		delete left;
	if (right)
		delete right;
}

void main()
{
   int zu[]={45,1,9,12,8,4821,4,5,1651,51};
   btree *root=new btree(zu[0]);

   for (int i = 1; i < 10; ++i)
   {
   	 root->insert(zu[i]);
   }

   btree::inorder(root);
   cout<<endl;
   btree::rinorder(root);
   cout<<endl;
   delete root;
}

二叉排序树(c++实现)

标签:二叉排序树   c++   

原文地址:http://blog.csdn.net/h1023417614/article/details/45081993

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