二叉排序树的限定条件下的数据输出

该程序实现了使用C++创建二叉排序树,并通过中序遍历将树中的元素按升序存入数组。当给定一个对比元素时,程序会输出所有大于或等于该元素的树中元素。
摘要由CSDN通过智能技术生成
#include <iostream>
using namespace std;
int i ;
int num[50];
typedef struct Treenode {
	int data;
	struct Treenode* lchild;
	struct Treenode *rchild;
}Treenode,*Tree;

//建二叉排序树
void Insert(Tree &T, int e) {
	if (T == NULL) { //树空
		T = new Treenode;
		T->data = e;
		T->lchild = NULL;
		T->rchild = NULL;
	}
	else //树中有结点
	{
		if (e < T->data) //小的值
			Insert(T->lchild, e);//放在左子树
		else    //大的值
			Insert(T->rchild, e);//放在右子树
	}
}

//将树中的元素 从小到大放入数组(二叉排序树的中序遍历是递增的)
void Largex(Tree &T, int x) {

	if (T) {
		Largex(T->lchild, x);

		num[i++] = T->data;

		Largex(T->rchild, x);
	}
}


int main() {
	int n;
	while (cin >> n && n != 0) {
		 Tree T=NULL;
		for (int i = 0; i < n; i++) {
			int e;
			cin >> e;
			Insert(T, e);
		}
		int x;//对比元素
		cin >> x;
		Largex(T, x);
		for (int i = 0; i < n-1; i++) {
			if (num[i] >= x) {
				cout << num[i]<<" ";
			}
		}
		cout << num[n - 1];
		cout << endl;

	    num[50] = { 0 };//*** 重置数组!
		i = 0;//***
	}
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值