-
Notifications
You must be signed in to change notification settings - Fork 0
/
tree.c
149 lines (110 loc) · 2.57 KB
/
tree.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
#include<stdio.h>
#include<stdlib.h>
#include<string.h>
#include<conio.h>
struct node{
char data[42];
struct node *left;
struct node *right;
};
int count=0;
struct node *insert(struct node *root,char ar[42]){
if(root==NULL){
root=(struct node *)malloc(sizeof(struct node));
strcpy(root->data,ar);
root->left=NULL;
root->right=NULL;
return root;
}
else{
printf("do you want this under %s\n?(y/n):",root->data);
getchar();
char ans;
scanf("%c",&ans);
printf("\n");
if(ans=='y'){
if(root->left!=NULL & root->right==NULL){
root->right = insert(root->right,ar);
//printf("%s ->right is %s\n",root->data,root->right->data);
}
else if(root->left==NULL){
root->left = insert(root->left,ar);
//printf("%s ->left is %s\n",root->data,root->left->data);
}
else{
if(insert(root->left,ar)!=NULL){
}
else
insert(root->right,ar);
}
}
else{
return NULL;
}
}
//printf("ROOT IS %s\n",root->data);
return root;
}
void print_leftnodes(struct node *root){
struct node *temp=root;
printf("%s->",temp->data);
while(temp->left!=NULL){
temp=temp->left;
printf("%s->",temp->data);
}
printf("\n");
}
void print_rightnodes(struct node *root){
struct node *temp=root;
printf("%s->",temp->data);
while(temp->right!=NULL){
temp=temp->right;
printf("%s->",temp->data);
}
printf("\n");
}
void inorder(struct node *root,int count){
if(root==NULL)
return;
printf("%s -> %s --- %s-> %s\n",root->data,root->left->data,root->data,root->right->data);
inorder(root->left,count);
count++;
inorder(root->right,count);
}
int main(){
struct node *root=NULL;
char c[42];
char d[]={'x','\0'};
while(1){
printf("1. insert\n");
printf("2. print\n");
printf("3. print left nodes\n");
printf("4. print right nodes\n");
int choice;
scanf("%d",&choice);
switch(choice){
case 1:
printf("Enter the data to be inserted:\n");
getchar();
scanf("%[^\n]s",&c);
//fgets(c,40,stdin);
count++;
root = insert(root,c);
strcpy(c,d);
break;
case 2:
//printf("\t\t\t %s\n",root->data);
inorder(root,count);
break;
case 3:
print_leftnodes(root);
break;
case 4:
print_rightnodes(root);
break;
case 99:
exit(1);
}
}
return 0;
}