-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinorder.cpp
62 lines (58 loc) · 1.42 KB
/
inorder.cpp
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
/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, PHP, Ruby,
C#, VB, Perl, Swift, Prolog, Javascript, Pascal, HTML, CSS, JS
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
#include <stdio.h>
#include <stdlib.h>
struct btnode
{
int data;
struct btnode *left;
struct btnode *right;
};
struct btnode *root;
struct btnode* createbtnode(int n)
{
struct btnode *node= (struct btnode*)malloc(sizeof (struct btnode));
node->data=n;
node->left=NULL;
node->right=NULL;
return node;
}
void inorder(struct btnode *root)
{
if(root)
{
inorder(root->left);
printf("%d",root->data);
inorder(root->right);
}
}
int main()
{
int ch,n,c;
while(1)
{
printf("1.enter elements to tree\n2.inorder traversal.\n6.exit\n");
printf("enter your choice\n");
scanf("%d",&ch);
switch(ch)
{
case 1: root=createbtnode(1);
root->left=createbtnode(2);
root->right=createbtnode(3);
root->left->left=createbtnode(4);
root->left->right=createbtnode(5);
break;
case 2: inorder(root);
printf("\n");
break;
case 6:exit(0);
break;
default:printf("invalid choice\n");
}
}
return 0;
}