-
Notifications
You must be signed in to change notification settings - Fork 1
/
castructures.pas
414 lines (351 loc) · 11.1 KB
/
castructures.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
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
unit caStructures;
{$INCLUDE ca.inc}
interface
uses
// Standard Delphi units
Windows,
SysUtils,
Classes,
Math,
Contnrs,
// ca units
caClasses,
caUtils,
caCell,
caMatrix,
caVector,
caTypes;
type
//---------------------------------------------------------------------------
// IcaUniquePairItem
//---------------------------------------------------------------------------
IcaUniquePairItem = interface
['{B69EDC95-151F-43C7-9E31-CB8232F242C7}']
function GetItem1: Integer;
function GetItem1AsString: String;
function GetItem2: Integer;
function GetItem2AsString: String;
procedure SetItem1(const Value: Integer);
procedure SetItem2(const Value: Integer);
// Properties
property Item1: Integer read GetItem1 write SetItem1;
property Item2: Integer read GetItem2 write SetItem2;
property Item1AsString: String read GetItem1AsString;
property Item2AsString: String read GetItem2AsString;
end;
//---------------------------------------------------------------------------
// TcaUniquePairItem
//---------------------------------------------------------------------------
TcaUniquePairItem = class(TInterfacedObject, IcaUniquePairItem)
private
FItem1: Integer;
FItem2: Integer;
// Property methods
function GetItem1: Integer;
function GetItem1AsString: String;
function GetItem2: Integer;
function GetItem2AsString: String;
procedure SetItem1(const Value: Integer);
procedure SetItem2(const Value: Integer);
public
property Item1: Integer read GetItem1 write SetItem1;
property Item2: Integer read GetItem2 write SetItem2;
property Item1AsString: String read GetItem1AsString;
property Item2AsString: String read GetItem2AsString;
end;
//---------------------------------------------------------------------------
// IcaUniquePairList
//---------------------------------------------------------------------------
IcaUniquePairList = interface
['{5A7E6C1C-67C2-4A4C-B94A-01F63AF273D5}']
// Property methods
function GetItemCount: Integer;
function GetPair(Index: Integer): TcaUniquePairItem;
function GetPairCount: Integer;
function GetReverseItems: Boolean;
function GetZeroBased: Boolean;
procedure SetItemCount(const Value: Integer);
procedure SetReverseItems(const Value: Boolean);
procedure SetZeroBased(const Value: Boolean);
// Properties
property ItemCount: Integer read GetItemCount write SetItemCount;
property PairCount: Integer read GetPairCount;
property Pairs[Index: Integer]: TcaUniquePairItem read GetPair; default;
property ReverseItems: Boolean read GetReverseItems write SetReverseItems;
property ZeroBased: Boolean read GetZeroBased write SetZeroBased;
end;
//---------------------------------------------------------------------------
// TcaUniquePairList
//---------------------------------------------------------------------------
TcaUniquePairList = class(TInterfacedObject, IcaUniquePairList)
private
FItemCount: Integer;
FList: TObjectList;
FReverseItems: Boolean;
FZeroBased: Boolean;
// Property methods
function GetItemCount: Integer;
function GetPair(Index: Integer): TcaUniquePairItem;
function GetPairCount: Integer;
function GetReverseItems: Boolean;
function GetZeroBased: Boolean;
procedure SetItemCount(const Value: Integer);
procedure SetReverseItems(const Value: Boolean);
procedure SetZeroBased(const Value: Boolean);
// Private methods
procedure BuildPairList;
public
constructor Create;
destructor Destroy; override;
// Properties
property ItemCount: Integer read GetItemCount write SetItemCount;
property PairCount: Integer read GetPairCount;
property Pairs[Index: Integer]: TcaUniquePairItem read GetPair; default;
property ReverseItems: Boolean read GetReverseItems write SetReverseItems;
property ZeroBased: Boolean read GetZeroBased write SetZeroBased;
end;
//---------------------------------------------------------------------------
// IcaCustomIntegerSet
//---------------------------------------------------------------------------
IcaCustomIntegerSet = interface
['{DB360B2F-D77A-4F04-A891-8D10C28D61BC}']
// Property methods
function GetChoose: Integer;
function GetFrom: Integer;
procedure SetChoose(const Value: Integer);
procedure SetFrom(const Value: Integer);
// Input properties
property Choose: Integer read GetChoose write SetChoose;
property From: Integer read GetFrom write SetFrom;
// Output properties
end;
//---------------------------------------------------------------------------
// TcaCustomIntegerSet
//---------------------------------------------------------------------------
TcaCustomIntegerSet = class(TInterfacedObject, IcaCustomIntegerSet)
private
FChoose: Integer;
FFrom: Integer;
// Property methods
function GetChoose: Integer;
function GetFrom: Integer;
procedure SetChoose(const Value: Integer);
procedure SetFrom(const Value: Integer);
public
constructor Create;
destructor Destroy; override;
// Input properties
property Choose: Integer read GetChoose write SetChoose;
property From: Integer read GetFrom write SetFrom;
// Output properties
end;
//---------------------------------------------------------------------------
// IcaPermutation
//---------------------------------------------------------------------------
IcaPermutation = interface
['{D3D6C372-EED2-4533-AF5F-97BDD2955B56}']
end;
//---------------------------------------------------------------------------
// TcaPermutation
//---------------------------------------------------------------------------
TcaPermutation = class(TInterfacedObject, IcaCustomIntegerSet, IcaPermutation)
private
FBase: IcaCustomIntegerSet;
protected
public
constructor Create;
destructor Destroy; override;
// Implementor
property Base: IcaCustomIntegerSet read FBase implements IcaCustomIntegerSet;
end;
//---------------------------------------------------------------------------
// IcaPermutationList
//---------------------------------------------------------------------------
IcaPermutationList = interface
['{AA6CFB07-278A-48C1-877C-451647AC6716}']
// Property methods
function GetPermutation(Index: Integer): IcaPermutation;
// Properties
property Items[Index: Integer]: IcaPermutation read GetPermutation;
end;
//---------------------------------------------------------------------------
// TcaPermutationList
//---------------------------------------------------------------------------
TcaPermutationList = class(TInterfacedObject, IcaCustomIntegerSet, IcaPermutationList)
private
FBase: IcaCustomIntegerSet;
FList: TInterfaceList;
// Property methods
function GetPermutation(Index: Integer): IcaPermutation;
protected
public
constructor Create;
destructor Destroy; override;
// Implementor
property Base: IcaCustomIntegerSet read FBase implements IcaCustomIntegerSet;
// Properties
property Items[Index: Integer]: IcaPermutation read GetPermutation;
end;
implementation
//---------------------------------------------------------------------------
// TcaUniquePairItem
//---------------------------------------------------------------------------
function TcaUniquePairItem.GetItem1: Integer;
begin
Result := FItem1;
end;
function TcaUniquePairItem.GetItem1AsString: String;
begin
Result := IntToStr(FItem1);
end;
function TcaUniquePairItem.GetItem2: Integer;
begin
Result := FItem2;
end;
function TcaUniquePairItem.GetItem2AsString: String;
begin
Result := IntToStr(FItem2);
end;
procedure TcaUniquePairItem.SetItem1(const Value: Integer);
begin
FItem1 := Value;
end;
procedure TcaUniquePairItem.SetItem2(const Value: Integer);
begin
FItem2 := Value;
end;
//---------------------------------------------------------------------------
// TcaUniquePairList
//---------------------------------------------------------------------------
constructor TcaUniquePairList.Create;
begin
inherited;
FList := TObjectList.Create(True);
FZeroBased := True;
FReverseItems := False;
end;
destructor TcaUniquePairList.Destroy;
begin
FList.Free;
inherited;
end;
// Private methods
procedure TcaUniquePairList.BuildPairList;
var
Index1: Integer;
Index2: Integer;
Index2Start: Integer;
Item: TcaUniquePairItem;
Offset: Integer;
begin
Offset := 1 - Ord(FZeroBased);
FList.Clear;
for Index1 := 0 to FItemCount - 1 do
begin
if FReverseItems then
Index2Start := 0
else
Index2Start := Index1 + 1;
for Index2 := Index2Start to FItemCount - 1 do
begin
Item := TcaUniquePairItem.Create;
Item.Item1 := Index1 + Offset;
Item.Item2 := Index2 + Offset;
FList.Add(Item);
end;
end;
end;
// Property methods
function TcaUniquePairList.GetItemCount: Integer;
begin
Result := FItemCount;
end;
function TcaUniquePairList.GetPair(Index: Integer): TcaUniquePairItem;
begin
Result := TcaUniquePairItem(FList[Index]);
end;
function TcaUniquePairList.GetPairCount: Integer;
begin
Result := FList.Count;
end;
function TcaUniquePairList.GetReverseItems: Boolean;
begin
Result := FReverseItems;
end;
function TcaUniquePairList.GetZeroBased: Boolean;
begin
Result := FZeroBased;
end;
procedure TcaUniquePairList.SetItemCount(const Value: Integer);
begin
FItemCount := Value;
BuildPairList;
end;
procedure TcaUniquePairList.SetReverseItems(const Value: Boolean);
begin
FReverseItems := Value;
BuildPairList;
end;
procedure TcaUniquePairList.SetZeroBased(const Value: Boolean);
begin
FZeroBased := Value;
BuildPairList;
end;
//---------------------------------------------------------------------------
// TcaCustomIntegerSet
//---------------------------------------------------------------------------
constructor TcaCustomIntegerSet.Create;
begin
inherited;
end;
destructor TcaCustomIntegerSet.Destroy;
begin
inherited;
end;
function TcaCustomIntegerSet.GetChoose: Integer;
begin
Result := FChoose;
end;
function TcaCustomIntegerSet.GetFrom: Integer;
begin
Result := FFrom;
end;
procedure TcaCustomIntegerSet.SetChoose(const Value: Integer);
begin
FChoose := Value;
end;
procedure TcaCustomIntegerSet.SetFrom(const Value: Integer);
begin
FFrom := Value;
end;
//---------------------------------------------------------------------------
// TcaPermutation
//---------------------------------------------------------------------------
constructor TcaPermutation.Create;
begin
inherited;
FBase := TcaCustomIntegerSet.Create;
end;
destructor TcaPermutation.Destroy;
begin
inherited;
end;
//---------------------------------------------------------------------------
// TcaPermutationList
//---------------------------------------------------------------------------
constructor TcaPermutationList.Create;
begin
inherited;
FBase := TcaCustomIntegerSet.Create;
FList := TInterfaceList.Create;
end;
destructor TcaPermutationList.Destroy;
begin
FList.Free;
inherited;
end;
function TcaPermutationList.GetPermutation(Index: Integer): IcaPermutation;
begin
Result := FList[Index] as IcaPermutation;
end;
end.