-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.c
101 lines (80 loc) · 2.44 KB
/
main.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
int levenstein_distance(const char* a, const char* b, int length_a, int length_b);
#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include <sys/time.h>
#include <sys/resource.h>
double diff(double start, double end) {
if ((end - start) < 0) {
return 1000000000 + end - start;
} else {
return end - start;
}
return 0;
}
void expectDistance(char* a, char* b, int distance) {
int d = levenstein_distance(a, b, strlen(a), strlen(b));
if (d != distance) {
printf("`%s` and `%s` expected distance %d but got %d instead\n\n", a, b, distance, d);
exit(EXIT_FAILURE);
}
}
int main() {
printf("\nRunning unit tests\n");
// matches
expectDistance("", "", 0);
expectDistance("a", "a", 0);
expectDistance("abc", "abc", 0);
// empty on one side
expectDistance("a", "", 1);
expectDistance("", "a", 1);
expectDistance("abc", "", 3);
expectDistance("", "abc", 3);
// inserts only
expectDistance("a", "ab", 1);
expectDistance("b", "ba", 1);
expectDistance("ac", "abc", 1);
expectDistance("abcdefg", "xabxcdxxefxgx", 6);
// deletes only
expectDistance("ab", "a", 1);
expectDistance("ab", "b", 1);
expectDistance("abc", "ac", 1);
expectDistance("xabxcdxxefxgx", "abcdefg", 6);
// swaps only
expectDistance("a", "b", 1);
expectDistance("ab", "ac", 1);
expectDistance("ac", "bc", 1);
expectDistance("abc", "axc", 1);
expectDistance("xabxcdxxefxgx", "1ab2cd34ef5g6", 6);
// combination of insert + delete + swap
expectDistance("example", "samples", 3);
expectDistance("sturgeon", "urgently", 6);
expectDistance("levenshtein", "frankenstein", 6);
expectDistance("distance", "difference", 5);
printf("passed");
// micro benchmark
int i;
unsigned int times = 4000000;
printf("\n\nRunning benchmark %lu times \n", (unsigned long) times);
double total_time = 0;
double clock_cost = 0;
struct timespec t1;
struct timespec t2;
char* string_a = "xabxcdxxefxgx";
int len_a = strlen(string_a);
char* string_b = "1ab2cd34ef5g6";
int len_b = strlen(string_b);
for (i = 0; i < times; ++i) {
// clock cost runtime reference
clock_gettime(CLOCK_MONOTONIC_RAW, &t1);
clock_gettime(CLOCK_MONOTONIC_RAW, &t2);
clock_cost += diff(t1.tv_nsec, t2.tv_nsec);
// real test
clock_gettime(CLOCK_MONOTONIC_RAW, &t1);
levenstein_distance(string_a, string_b, len_a, len_b);
clock_gettime(CLOCK_MONOTONIC_RAW, &t2);
total_time += diff(t1.tv_nsec, t2.tv_nsec);
}
printf("median: %f ns/op\n\n", ((total_time-clock_cost)/times));
return 0;
}