blob: 3c9bf7c64181192aa560fd744502b65e0456c4b2 (
plain)
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
|
{$mode objfpc}{$h+}
uses
classes, sysutils;
const
count = 64;
factor = 15;
function ptrtopaddedstr(x: pointer): string;
begin
result := format('%02p', [x]);
end;
procedure fatalerror(str: string; index: integer);
begin
writeln(str, index);
halt(1);
end;
var
i, j: ptrint;
strlist: tstringlist;
begin
strlist := tstringlist.create;
for i := 0 to count-1 do
begin
j := factor*i mod count;
strlist.addobject(ptrtopaddedstr(pointer(j)), tobject(j));
end;
for i := 0 to count-1 do
begin
j := factor*i mod count;
if strlist.strings[i] <> ptrtopaddedstr(pointer(j)) then
fatalerror('string error at ', i);
if strlist.objects[i] <> tobject(j) then
fatalerror('object error at ', i);
end;
strlist.sort;
for i := 0 to count-1 do
begin
if strlist.strings[i] <> ptrtopaddedstr(pointer(i)) then
fatalerror('sorted string error at ', i);
if strlist.objects[i] <> tobject(i) then
fatalerror('sorted object error at ', i);
end;
strlist.delete(10);
strlist.delete(25);
if strlist.count <> count-2 then
fatalerror('strlist.count is not ', count-2);
j := 0;
for i := 0 to 61 do
begin
if strlist.strings[i] <> ptrtopaddedstr(pointer(j)) then
fatalerror('delete string error at ', i);
if strlist.objects[i] <> tobject(j) then
fatalerror('delete object error at ', i);
inc(j);
if (j = 10) or (j = 26) then
inc(j);
end;
strlist.free;
writeln('ok');
end.
|