-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathbinarySearchTree.c
More file actions
96 lines (69 loc) · 1.34 KB
/
binarySearchTree.c
File metadata and controls
96 lines (69 loc) · 1.34 KB
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
#include <stdio.h>
#include <stdlib.h>
struct node
{
int key;
struct node *left, *right;
};
struct node *newNode(int item)
{
struct node *temp = (struct node *)malloc(sizeof(struct node));
temp->key = item;
temp->left = temp->right = NULL;
return temp;
}
void inorder(struct node *root)
{
if (root != NULL)
{
inorder(root->left);
printf("%d \t", root->key);
inorder(root->right);
}
}
struct node* insert(struct node* node, int key)
{
/* If the tree is empty, return a new node */
if (node == NULL) return newNode(key);
/* Otherwise, recur down the tree */
if (key < node->key)
node->left = insert(node->left, key);
else if (key > node->key)
node->right = insert(node->right, key);
/* return the (unchanged) node pointer */
return node;
}
// void delete(struct node* root,int key)
// {
// if(root!=NULL)
// {
// if(root->data==key)
// {
// }
// }
// }
int main()
{
struct node *root = NULL;
int choice =1, key;
do
{
printf("Select a function \n1. Insert\n2. Inorder\n3. Exit\n");
scanf("%d",&choice);
switch(choice)
{
case 1: printf("Enter a number\n");
scanf("%d",&key);
if(root==NULL)
root = insert(root, key);
else
insert(root,key);
break;
case 2: inorder(root);
printf("\n");
break;
case 3: break;
default: break;
}
}while(choice!=3);
}