-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtree2.c
More file actions
48 lines (40 loc) · 769 Bytes
/
tree2.c
File metadata and controls
48 lines (40 loc) · 769 Bytes
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
#include<stdio.h>
#include<stdlib.h>
struct node
{
int data;
struct node *left;
struct node *right;
};
struct node* create()
{
int x;
struct node* newnode = (struct node*)malloc(sizeof(struct node));
printf("Data = ");
scanf("%d",&x);
if(x==-1)
return 0;
newnode->data = x;
printf("Left child of %d\n",x);
newnode->left=create();
printf("Right child of %d\n",x);
newnode->right=create();
return(newnode);
}
void preorder(struct node *t)
{
if(t!=NULL)
{
printf("%d ",t->data);
preorder(t->left);
preorder(t->right);
}
}
void main()
{
struct node *root;
printf("Enter data -1 for no node\n");
root=create();
printf("\nPreorder traversal ->\n");
preorder(root);
}