-
Notifications
You must be signed in to change notification settings - Fork 630
/
Copy pathBST and its traversal.c
83 lines (81 loc) · 1.53 KB
/
BST and its traversal.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
#include <stdio.h>
#include <stdlib.h>
struct Node
{
struct Node *lchild;
int data;
struct Node *rchild;
}*root=NULL;
void Insert(int key)
{
struct Node *t=root;
struct Node *r=NULL,*p;
if(root==NULL)
{
p=(struct Node *)malloc(sizeof(struct Node));
p->data=key;
p->lchild=p->rchild=NULL;
root=p;
return;
}
while(t!=NULL)
{
r=t;
if(key<t->data)
t=t->lchild;
else if(key>t->data)
t=t->rchild;
else return;
}
p=(struct Node *)malloc(sizeof(struct Node));
p->data=key;
p->lchild=p->rchild=NULL;
if(key<r->data) r->lchild=p;
else r->rchild=p;
}
int Inorder(struct Node *p)
{
if(p)
{
Inorder(p->lchild);
printf("%d ",p->data);
Inorder(p->rchild);
}
}
int Postorder(struct Node *p)
{
if(p)
{ Postorder(p->lchild);
Postorder(p->rchild);
printf("%d ",p->data);
}
}
int Preorder(struct Node *p)
{
if(p)
{ printf("%d ",p->data);
Preorder(p->lchild);
Preorder(p->rchild);
}
}
int main()
{
struct Node *temp;
printf("\nEnter number of Node in Your tree: ");
int n,i,val;
scanf("%d",&n);
printf("\nEnter ur Elemnts: ");
for(i=0;i<n;i++)
{
scanf("%d",&val);
Insert(val);
}
printf("Inorder Traversal of BST is: ");
Inorder(root);
printf("\nPostorder Traversal of BST is: ");
Postorder(root);
printf("\nPreorder Traversal of BST is: ");
Preorder(root);
printf("\n");
return 0;
}