-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathglist.pas
122 lines (98 loc) · 2.17 KB
/
glist.pas
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
unit glist;
{$mode objfpc}
interface
type
{ customized TVector from gvector }
generic TList<T> = class
private
type
TArr = array of T;
var
FCapacity:SizeUInt;
FDataSize:SizeUInt;
FData:TArr;
procedure SetValue(Position: SizeUInt; const Value: T); inline;
function GetValue(Position: SizeUInt): T; inline;
procedure IncreaseCapacity; inline;
property Size: SizeUInt read FDataSize;
public
constructor Create;
procedure Add(const Value: T); //inline;
function IsEmpty: boolean; inline;
procedure Remove(Position: SizeUInt); inline;
procedure Clear; inline;
procedure Reserve(Num: SizeUInt);
procedure Resize(Num: SizeUInt);
function Count: integer; inline;
property Items[i : SizeUInt]: T read getValue write setValue; default;
end;
implementation
{ TVector }
constructor TList.Create();
begin
FCapacity:=0;
FDataSize:=0;
end;
procedure TList.SetValue(Position: SizeUInt; const Value: T);
begin
FData[Position]:=Value;
end;
function TList.GetValue(Position: SizeUInt): T;
begin
GetValue:=FData[Position];
end;
function TList.IsEmpty(): boolean;
begin
IsEmpty := (Size = 0);
end;
procedure TList.Add(const Value: T);
begin
if FDataSize=FCapacity then
IncreaseCapacity;
FData[FDataSize]:=Value;
inc(FDataSize);
end;
procedure TList.IncreaseCapacity();
begin
if FCapacity=0 then
FCapacity:=1
else
FCapacity:=FCapacity*2;
SetLength(FData, FCapacity);
end;
procedure TList.Remove(Position: SizeUInt);
begin
if Position < Size then
begin
dec(FDataSize);
// ensure that the data we want to Remove is released
FData[Position] := Default(T);
Move(FData[Position+1], FData[Position], (FDataSize - Position) * SizeOf(T));
end;
end;
procedure TList.Clear;
begin
FDataSize:=0;
end;
procedure TList.Reserve(Num: SizeUInt);
begin
if(Num < FCapacity) then
exit
else if(Num <= 2*FCapacity) then
IncreaseCapacity
else begin
SetLength(FData, Num);
FCapacity:=Num;
end;
end;
procedure TList.Resize(Num: SizeUInt);
begin
Reserve(Num);
FDataSize:=Num;
end;
function TList.Count: integer;
begin
Assert(Size < MaxInt);
result := integer(Size);
end;
end.