-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtnode.c
More file actions
98 lines (88 loc) · 1.67 KB
/
Copy pathtnode.c
File metadata and controls
98 lines (88 loc) · 1.67 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
92
93
94
95
96
97
98
#include <stdio.h>
#include <ctype.h>
#include <string.h>
#define MAXWORD 100
struct tnode {
char *word;
int count;
struct tnode *left;
struct tnode *right;
};
struct tnode *addtree(struct tnode *,char *);
void treeprint(struct tnode *);
int getword(char *,int);
struct tnode *talloc(void);
char *strup(char *);
main()
{
struct tnode *root;
char word[MAXWORD];
root = NULL;
while(getword(word,MAXWORD)!=EOF)
if(isalpha(word[0]))
root=addtree(root,word);
treeprint(root);
return 0;
}
struct tnode *addtree(struct tnode *p,char *w)
{
int cond;
if(p==NULL)
{
p = talloc();
p->word=strdup(w);
p->count=1;
p->left=p->right=NULL;
}
else if((cond = strcmp(w,p->word)) == 0)
p->count++;
else if(cond<0)
p->left = addtree(p->left,w);
else
p->right = addtree(p->right,w);
return p;
}
struct tnode *talloc(void)
{
return (struct tnode *)malloc(sizeof(struct tnode));
}
char *strup(char *s)
{
char *p;
p=(char *)malloc(strlen(s)+1);
if(p!=NULL)
strcpy(p,s);
return p;
}
void treeprint(struct tnode *p)
{
if(p!=NULL)
{
treeprint(p->left);
printf("%4d %s\n",p->count,p->word);
treeprint(p->right);
}
}
int getword(char *word,int lim)
{
char *w = word;
int c;
while(isspace (c = getchar()))
;
if(c!=EOF)
*w++ = c;
if(!isalpha(c))
{
*w = '\0';
return c;
}
for(;--lim>0;w++)
if(!isalnum(*w = getchar()))
{
//ungetc(w);
*w = '\0';
break;
}
*w = '\0';
return word[0];
}