码迷,mamicode.com
首页 > 其他好文 > 详细

二叉查找树

时间:2015-06-09 21:48:10      阅读:117      评论:0      收藏:0      [点我收藏+]

标签:

二叉查找树的插入节点/打印

#include<iostream>
using namespace std;
struct node
{
    int data;
    node *left;
    node *right;
};
//(1)通过插入节点构建二叉查找树
node *insert_node(node *root,int num)
{

    if(root==NULL)
    {
        root=new node;
        root->left=NULL;
        root->right=NULL;
        root->data=num;
    }
    else
    {
        if(num<root->data)
        {
            root->left=insert_node(root->left,num);
        }
        else
            root->right=insert_node(root->right,num);
    }
    return root;
}
//(2) 打印二叉查找树
void print_tree(node *root)
{

    if(root->left==NULL)
    {
        if(root->right==NULL)
            cout<<root->data<<endl;
        else
        {
            cout<<root->data<<endl;
            print_tree(root->right);
        }
    }
    else
    {
        print_tree(root->left);
        cout<<root->data<<endl;
        if(root->right!=NULL) print_tree(root->right);
    }
}

int main()
{
    node *tree;
    tree=NULL;
    cout<<"input datas:"<<endl;
    int x;char c;
    while(cin>>x)
    {
        tree=insert_node(tree,x);
        cin.get(c);
        if(c==\n)break;
    }
    print_tree(tree);
    return 0;
}

 

二叉查找树

标签:

原文地址:http://www.cnblogs.com/riden/p/4564456.html

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