二叉搜索树的递归和非递归的插入方法

Posted simple_wxl

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了二叉搜索树的递归和非递归的插入方法相关的知识,希望对你有一定的参考价值。

#include<iostream>
#include<vector>
#include<queue>
#include<string>
#include<map>
using namespace std;
bool flag=true;
struct node
{
float val;
node* left,*right;
node(float _val):val(_val),left(NULL),right(NULL){}
};

node* insertnot(node* root,float x)
{
node * tmp=new node(x);
node* parent=root;
while (root)
{
parent=root;
if(root->val>x)
root=root->left;
else root=root->right;
}
if(parent==NULL)
{
parent=tmp;
root=parent;
}
else if(parent->val>x) parent->left=tmp;
else parent->right=tmp;
return root;
}


node* insert(node* root,float x)
{

if(root==NULL)
{
node* tmp=new node(x);
return tmp;
}
if(root->val>=x)
root->left=insert(root->left,x);
else
root->right=insert(root->right,x);
return root;
}
int main()
{

float a[]={4,2,5,1,3};
vector<float> vec(a,a+5);
node* root=new node(a[0]);
for(int i=1;i<5;i++)
{
flag=true;
insert(root,vec[i]);
}
return 0;
}

以上是关于二叉搜索树的递归和非递归的插入方法的主要内容,如果未能解决你的问题,请参考以下文章

数据结构--Avl树的创建,插入的递归版本和非递归版本,删除等操作

二叉树遍历(先序,中序,后序,层序)递归和非递归形式

数据结构——搜索二叉树的插入,查找和删除(递归&非递归)

数据结构之二叉搜索树详解

二叉搜索树

二叉搜索树