-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPattern_Search_BM.adb
51 lines (42 loc) · 1.32 KB
/
Pattern_Search_BM.adb
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
package body Pattern_Search_BM is
function Search (Text, Pattern : in String) return Positive is
Right_Array : Right(' ' .. '~');
N : Positive := Text'Length;
M : Positive := Pattern'Length;
I : Positive := 1;
Skip : Integer;
begin
Build_Right(Right_Array, Pattern);
while I <= N-M
loop
Skip := 0;
for J in reverse 1 .. M
loop
if Pattern(J) /= Text(I+J-1) then
if J-Right_Array(Text(I+J-1)) < 1 then
Skip := 1;
else
Skip := J-Right_Array(Text(I+J-1));
end if;
exit;
end if;
end loop;
if Skip = 0 then
return I - 1;
end if;
I := I + Skip;
end loop;
return N;
end Search;
procedure Build_Right (Right_Array : in out Right; Pattern : in String) is
begin
for C in Right_Array'range
loop
Right_Array(C) := 0;
end loop;
for I in Pattern'range
loop
Right_Array(Pattern(I)) := I;
end loop;
end Build_Right;
end Pattern_Search_BM;