-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsearch_substring.c
More file actions
371 lines (286 loc) · 9.84 KB
/
search_substring.c
File metadata and controls
371 lines (286 loc) · 9.84 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
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
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
/*
*********************************************************************************************************
* INCLUDE FILES
*********************************************************************************************************
*/
#include "search_substring.h"
/*
*********************************************************************************************************
* LOCAL DEFINES
*********************************************************************************************************
*/
/*
*********************************************************************************************************
* LOCAL CONSTANTS
*********************************************************************************************************
*/
/*
*********************************************************************************************************
* LOCAL DATA TYPES
*********************************************************************************************************
*/
/*
*********************************************************************************************************
* LOCAL TABLES
*********************************************************************************************************
*/
/**
* @brief This struct will contain the necessary information that sort needed.
*/
search_substring_t search_substring_control_algorithm_address_table[] = {
&search_substring_control_sunday_algorithm,
&search_substring_control_brute_force_algorithm,
&search_substring_control_sunday_algorithm
};
/*
*********************************************************************************************************
* LOCAL GLOBAL VARIABLES
*********************************************************************************************************
*/
/*
*********************************************************************************************************
* LOCAL FUNCTION PROTOTYPES
*********************************************************************************************************
*/
/**
* @brief This function will match the substring by forward search.
*
* @param str the pointer to the string.
* @param substr the pointer to the substring.
* @param sublen the length of the substring.
*
* @return the location of not match.
*/
size_t search_substring_control_match_forward_search(const char *str,
const char *substr,
size_t sublen);
/**
* @brief This function will match the substring by backward search.
*
* @param str the pointer to the string.
* @param substr the pointer to the substring.
* @param sublen the length of the substring.
*
* @return the location of not match.
*/
size_t search_substring_control_match_backward_search(const char *str,
const char *substr,
size_t sublen);
/*
*********************************************************************************************************
* FUNCTIONS
*********************************************************************************************************
*/
/**
* @brief This function will search the substring upon the string in the package
* by the specified algorithm.
*
* @param algorithm the enum name of the algorithm
* @param package the package contains the necessary information
*
* @return void
*/
float search_substring_control(enum search_substring_type_e algorithm,
struct search_substring_package_s package)
{
assert(NULL != package.str.string
&& NULL != package.substr.string
&& package.str.length
&& package.substr.length);
search_substring_t
search_substring_algorithm
= search_substring_control_algorithm_address_table[algorithm];
return search_substring_algorithm(package.str.string,
package.str.length,
package.substr.string,
package.substr.length);
}
/**
* @brief This function will search the substring upon the string by the brute force algorithm.
*
* @param str the pointer to the string.
* @param substr the pointer to the substring.
* @param len the length of the substring.
*
* @return the max matching rate.
*/
float search_substring_control_brute_force_algorithm(const char *str, size_t len,
const char *substr, size_t sublen)
{
assert(str);
assert(len);
assert(substr);
assert(sublen);
static const size_t step = 1;
static size_t
loc, subloc;
static char
symbol_substr;
static float
max_matching_rate;
loc = 0; /* Set zero */
max_matching_rate = 0.0;
do {
subloc = search_substring_control_match_forward_search((str + loc),
substr,
sublen);
if (sublen == subloc) {
return 1.0;
} else {
}
#if (SEARCH_SUBSTRING_CFG_MAX_MATCH_RATE_EN)
if (subloc && max_matching_rate < subloc / (float)sublen) {
max_matching_rate = subloc / (float)sublen;
}
#endif // (SEARCH_SUBSTRING_CFG_MAX_MATCH_RATE_EN)
} while ((loc += step) < len);
return max_matching_rate;
}
/**
* @brief This function will search the substring upon the string by the sunday algorithm.
*
* @param str the pointer to the string.
* @param substr the pointer to the substring.
* @param len the length of the substring.
*
* @return the max matching rate.
*/
float search_substring_control_sunday_algorithm(const char *str, size_t len,
const char *substr, size_t sublen)
{
assert(str);
assert(len);
assert(substr);
assert(sublen);
static size_t
loc, step, subloc;
static char
symbol_substr;
static float
max_matching_rate;
struct sunday_algorith_substring_infomation_s {
bool exist;
size_t location;
}symbol[128] = { 0 }; /* ASSIC have 128 symbol */
loc = 0; /* Set zero */
step = 0;
subloc = 0;
max_matching_rate = 0.0;
do { /* Get the information of the substring,
whether the symbol exist and where it is */
symbol_substr = *(substr + subloc);
if (false == symbol[symbol_substr].exist) {
symbol[symbol_substr].exist = true;
}
symbol[symbol_substr].location = sublen - subloc - 1;
} while (sublen > subloc++);
do {
subloc = search_substring_control_match_backward_search(str + loc,
substr,
sublen);
if (sublen == subloc) {
return 1.0;
} else {
if (*(substr + subloc) != *(str + loc + subloc)) {
#if (SEARCH_SUBSTRING_CFG_DEBUG_EN)
printf("search_substring.sunday_algorithm.not match:str \'%c\' - substr \'%c\' the point is \'%c\' \r\n",
*(substr + subloc), *(str + loc + subloc), *(str + loc + sublen));
#endif // (SEARCH_SUBSTRING_CFG_DEBUG_EN)
symbol_substr = *(str + loc + sublen);
if (true == symbol[symbol_substr].exist) {
#if (SEARCH_SUBSTRING_CFG_DEBUG_EN)
printf("search_substring.sunday_algorithm.not match.point is exist \r\n");
#endif // (SEARCH_SUBSTRING_CFG_DEBUG_EN)
step = symbol[symbol_substr].location + 1;
} else {
#if (SEARCH_SUBSTRING_CFG_DEBUG_EN)
printf("search_substring.sunday_algorithm.not match.point is not exist \r\n");
#endif // (SEARCH_SUBSTRING_CFG_DEBUG_EN)
step = sublen + 1;
}
}
#if (SEARCH_SUBSTRING_CFG_DEBUG_EN)
printf("search_substring.sunday_algorithm.step:%d \r\n"
, step);
#endif // (SEARCH_SUBSTRING_CFG_DEBUG_EN)
}
#if (SEARCH_SUBSTRING_CFG_MAX_MATCH_RATE_EN)
if (subloc && max_matching_rate < subloc / (float)sublen) {
max_matching_rate = subloc / (float)sublen;
}
#endif // (SEARCH_SUBSTRING_CFG_MAX_MATCH_RATE_EN)
} while (len > (loc += step));
return max_matching_rate;
}
/**
* @brief This function will match the substring by forward search.
*
* @param str the pointer to the string.
* @param substr the pointer to the substring.
* @param sublen the length of the substring.
*
* @return the location of not match.
*/
static inline size_t
search_substring_control_match_forward_search(const char *str,
const char *substr,
size_t sublen)
{
assert(str);
assert(substr);
assert(sublen);
static size_t
subloc;
subloc = sublen - 1;
do {
if (*(substr + subloc) != *(str + subloc)) {
#if (SEARCH_SUBSTRING_CFG_DEBUG_EN)
printf("search_substring.match.forward_search.not match:str \'%c\' - substr \'%c\' \r\n",
*(substr + subloc), *(str + subloc));
#endif // (SEARCH_SUBSTRING_CFG_DEBUG_EN)
break;
} else if (0 == subloc) { /* If the last symbol match */
#if (SEARCH_SUBSTRING_CFG_DEBUG_EN)
printf("search_substring.match.forward_search.all matched \r\n");
#endif // (SEARCH_SUBSTRING_CFG_DEBUG_EN)
return sublen;
}
} while (0 < subloc--);
return subloc;
}
/**
* @brief This function will match the substring by backward search.
*
* @param str the pointer to the string.
* @param substr the pointer to the substring.
* @param sublen the length of the substring.
*
* @return the location of not match.
*/
static inline size_t
search_substring_control_match_backward_search(const char *str,
const char *substr,
size_t sublen)
{
assert(str);
assert(substr);
assert(sublen);
static size_t
subloc;
subloc = 0;
do {
if (*(substr + subloc) != *(str + subloc)) {
#if (SEARCH_SUBSTRING_CFG_DEBUG_EN)
printf("search_substring.match.backward_search.not match:str \'%c\' - substr \'%c\' \r\n",
*(substr + subloc), *(str + subloc));
#endif // (SEARCH_SUBSTRING_CFG_DEBUG_EN)
break;
} else if (sublen - 1 == subloc) { /* If the last symbol match */
#if (SEARCH_SUBSTRING_CFG_DEBUG_EN)
printf("search_substring.match.backward_search.all matched \r\n");
#endif // (SEARCH_SUBSTRING_CFG_DEBUG_EN)
return sublen;
}
} while (sublen > subloc++);
return subloc;
}