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

数据结构:二叉排序树(创建二叉排序树及其中序遍历)

时间:2019-08-11 23:30:31      阅读:163      评论:0      收藏:0      [点我收藏+]

标签:create   struct   typedef   lib   def   main   for   nod   tree   

#include<stdio.h>
#include<stdlib.h>
 typedef struct Node
{
int data;
struct Node *left, *right;
}Node;
Node * CreateTree(int n)
{
    int a[101],i;
    for(i=0;i<n;i++)
    scanf("%d",&a[i]);
    Node* t1;
    t1=(Node*)malloc(sizeof(Node));
    t1->data=a[0];
    t1->left=t1->right=NULL;
    for(i=1;i<n;i++)
    {
        Node* t2,*p=t1,*q;
        t2=(Node*)malloc(sizeof(Node));
        t2->data=a[i];
        t2->left=t2->right=NULL;
        while(p)
        {
            if(p->data>a[i])
            {
                q=p;
                p=p->left;
            }
            else
            {
                q=p;
                p=p->right;
            }
        }
        if(q->data>a[i])
        q->left=t2;
        else
        q->right=t2;
    }
    return t1;
}
void Preorder(Node *tree)
{
    if(tree==NULL)
    return ;
    Preorder(tree->left);
    printf("%d ",tree->data);
    Preorder(tree->right);
}
int main()
{
    Node *tree;
    int n;
    while(~scanf("%d",&n))
    {
        tree=CreateTree(n);
        Preorder(tree);
        printf("\n"); 
    }        
} 

 

数据结构:二叉排序树(创建二叉排序树及其中序遍历)

标签:create   struct   typedef   lib   def   main   for   nod   tree   

原文地址:https://www.cnblogs.com/zzjam--1/p/11336961.html

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