-
Notifications
You must be signed in to change notification settings - Fork 0
/
tree.c
84 lines (67 loc) · 1.21 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
#include <stdlib.h>
#include <stdio.h>
#include "tree.h"
/*
* struct kpnode {
* char data;
* struct kpnode *lnext;
* struct kpnode *rnext;
* };
*/
struct kpnode* mknode(char data)
{
struct kpnode *node = (struct kpnode*)malloc(sizeof(struct kpnode));
node->data = data;
node->lnext = 0;
node->rnext = 0;
return node;
}
struct kpnode* insnode(char data, struct kpnode* childl, struct kpnode* childr)
{
struct kpnode* node = mknode(data);
node->lnext = childl;
node->rnext = childr;
return node;
}
void remnode(struct kpnode **node)
{
if ((*node)->lnext != NULL)
remnode(&(*node)->lnext);
if ((*node)->rnext != NULL)
remnode(&(*node)->rnext);
free(*node);
*node = NULL;
return;
}
int find(char val, struct kpnode *node)
{
if (node == NULL)
return 0;
if (val == node->data)
return 1;
else {
int n;
if(!(n = find(val, node->lnext)) && !(n = find(val,node->rnext)))
return 0;
else
return 1;
}
}
/*
int getpath(char val, struct kpnode *node)
{
}
*/
int disptree(struct kpnode* node)
{
printf("node data: %c\n", node->data);
if (node->lnext) {
printf("child 1 ");
disptree(node->lnext);
}
if (node->rnext) {
printf("child 2 ");
disptree(node->rnext);
}
return 0;
}