-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdiff_match_patch_bench.rb
49 lines (43 loc) · 1.31 KB
/
diff_match_patch_bench.rb
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
require 'benchmark'
def prefix_linear(text1, text2)
# Linear search.
text1.length.times do |i|
if text1[i] != text2[i]
return i
end
end
end
def prefix_binary(text1, text2)
# Binary search.
pointermin = 0
pointermax = [text1.length, text2.length].min
pointermid = pointermax
pointerstart = 0
while pointermin < pointermid
if text1[pointerstart...pointermid] == text2[pointerstart...pointermid]
pointermin = pointermid
pointerstart = pointermin
else
pointermax = pointermid
end
pointermid = (pointermax - pointermin) / 2 + pointermin
end
return pointermid
end
def make_strings(n)
# Create a random string of 'n' letters.
chars = (32..127).map(&:chr)
text1 = Array.new(n, '').collect{chars[rand(chars.size)]}.join
# Create another random string which differs from the first by one letter
# inserted.
answer = rand(n)
text2 = text1[0...answer] + '\t' + text1[answer..-1]
[text1, text2, answer]
end
Benchmark.bm(20) do |bm|
[1_000, 10_000, 100_000, 1_000_000, 10_000_000].each do |n|
text1, text2, answer = make_strings(n)
bm.report("linear (#{n})") { (prefix_linear(text1, text2) == answer) or raise }
bm.report("binary (#{n})") { (prefix_binary(text1, text2) == answer) or raise }
end
end