-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathparser algorithm
136 lines (116 loc) · 2.4 KB
/
parser algorithm
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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
#include<stdlib.h>
#include<stdio.h>
#include<string.h>
struct bin_tree {
char data;
struct bin_tree * right, * left;
};
typedef struct bin_tree node;
void insert(node ** tree, char val)
{
node *temp = NULL;
if(!(*tree))
{
temp = (node *)malloc(sizeof(node));
temp->left = temp->right = NULL;
temp->data = val;
*tree = temp;
return;
}
if(val < (*tree)->data)
{
insert(&(*tree)->left, val);
}
else if(val > (*tree)->data)
{
insert(&(*tree)->right, val);
}
}
void print_preorder(node * tree)
{
if (tree)
{
printf("\n%c",tree->data);
print_preorder(tree->left);
print_preorder(tree->right);
}
}
void print_inorder(node * tree)
{
if (tree)
{
print_inorder(tree->left);
printf("\n%c",tree->data);
print_inorder(tree->right);
}
}
void print_postorder(node * tree)
{
if (tree)
{
print_postorder(tree->left);
print_postorder(tree->right);
printf("\n%c",tree->data);
}
}
void deltree(node * tree)
{
if (tree)
{
deltree(tree->left);
deltree(tree->right);
free(tree);
}
}
void main()
{
node *root;
node *tmp;
root = NULL;
char str1[100];
char newString[10][10];
int i,j,k,temp,m;
char newChar[100];
printf("\nUniversity of petroleum and energy studies.:\n");
printf("\n Input a string for which you want to perform Tockenization : ");
fgets(str1, sizeof str1, stdin);
j=0;
temp=0;
m = 0;
for(i=0;i<=(strlen(str1));i++){
if(str1[i]==' '||str1[i]=='\0')
{
newString[temp][j]='\0';
temp++;
j=0;
}
else
{
newString[temp][j]=str1[i];
newChar[m] = str1[i];
m++;
j++;
}
}
printf("\n tokens after split by space are :\n");
for(i=0;i < temp;i++)
printf(" %s\n",newString[i]);
for(i=0;i < m;i++){
//printf(" %c\n",newChar[i]);
insert(&root, newChar[i]);
}
/*
insert(&root, 'H');
insert(&root, 'E');
insert(&root, 'L');
insert(&root, 'L');
insert(&root, 'O');
*/
printf("\nPre Order Display");
print_preorder(root);
printf("\nIn Order Display");
print_inorder(root);
printf("\nPost Order Display");
print_postorder(root);
deltree(root);
}