题解 | #二叉排序树#

二叉排序树

https://www.nowcoder.com/practice/30a0153649304645935c949df7599602

#include<iostream>
using namespace std;

typedef struct node{
	int val;
	struct node *left, *right;
}bittree, *tree;

//递归建树,并且返回父亲节点
int build(tree &t, tree node){
	if(t == NULL){
		t = node;
		return -1;
	}
	if(t->val > node->val){
		if(t->left == NULL){
			t->left = node;
			return t->val;
		}else{
			return build(t->left, node);
		}
	}else if(t->val < node->val){
		if(t->right == NULL){
			t->right = node;
			return t->val;
		}else{
			return build(t->right, node);
		}
	}else{
		return -1;
	}
}

int main(){
	int n, m;
	cin >> n;
	tree t = NULL;
	
	for(int i = 0; i < n; i++){
		cin >> m;
		tree node = (tree)malloc(sizeof(bittree));
		node->left = NULL;
		node->right = NULL;
		node->val = m;
		cout << build(t, node) << endl;
	}
	return 0;
}

全部评论

相关推荐

不愿透露姓名的神秘牛友
昨天 15:43
mamazi00:领导你好+小作文。就算给你涨薪,其实也是待不久了
点赞 评论 收藏
分享
把球:这个听过,你加了就会发现是字节的hr
点赞 评论 收藏
分享
一名愚蠢的人类:多少games小鬼留下了羡慕的泪水
投递荣耀等公司10个岗位
点赞 评论 收藏
分享
评论
点赞
收藏
分享
牛客网
牛客企业服务