-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
ListSorters.pas
594 lines (512 loc) · 20.5 KB
/
ListSorters.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
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
{-------------------------------------------------------------------------------
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
-------------------------------------------------------------------------------}
{===============================================================================
List sorters
Classes designed to sort lists by using only list indices.
The list must provide compare and exchange functions, both accepting two
indices, and also lowest and highest item index.
Sorter then uses provided compare function to compare two items and, when
necessary, exchanges these two items using provided exchange function.
The compare function should return positive value when first item is
larger (should be higher) than second item, zero when the two items are
equal and negative value when first item is smaller (is in correct order
in relation to the second item).
Following sorting algorithms are currently implemented:
- bubble sort
- quick sort (could use some testing and optimizations)
- bogo sort (only for fun and tests)
Version 1.1.3 (2024-05-02)
Last change 2024-05-02
©2018-2024 František Milt
Contacts:
František Milt: [email protected]
Support:
If you find this code useful, please consider supporting its author(s) by
making a small donation using the following link(s):
https://www.paypal.me/FMilt
Changelog:
For detailed changelog and history please refer to this git repository:
github.com/TheLazyTomcat/Lib.ListSorters
Dependencies:
AuxClasses - github.com/TheLazyTomcat/Lib.AuxClasses
* AuxExceptions - github.com/TheLazyTomcat/Lib.AuxExceptions
Library AuxExceptions is required only when rebasing local exception classes
(see symbol ListSorters_UseAuxExceptions for details).
Library AuxExceptions might also be required as an indirect dependency.
Indirect dependencies:
AuxTypes - github.com/TheLazyTomcat/Lib.AuxTypes
SimpleCPUID - github.com/TheLazyTomcat/Lib.SimpleCPUID
StrRect - github.com/TheLazyTomcat/Lib.StrRect
UInt64Utils - github.com/TheLazyTomcat/Lib.UInt64Utils
WinFileInfo - github.com/TheLazyTomcat/Lib.WinFileInfo
===============================================================================}
unit ListSorters;
{
ListSorters_UseAuxExceptions
If you want library-specific exceptions to be based on more advanced classes
provided by AuxExceptions library instead of basic Exception class, and don't
want to or cannot change code in this unit, you can define global symbol
ListSorters_UseAuxExceptions to achieve this.
}
{$IF Defined(ListSorters_UseAuxExceptions)}
{$DEFINE UseAuxExceptions}
{$IFEND}
//------------------------------------------------------------------------------
{$IFDEF FPC}
{$MODE ObjFPC}
{$ENDIF}
{$H+}
interface
uses
SysUtils,
AuxClasses{$IFDEF UseAuxExceptions}, AuxExceptions{$ENDIF};
{===============================================================================
Library-specific exceptions
===============================================================================}
type
ELSException = class({$IFDEF UseAuxExceptions}EAEGeneralException{$ELSE}Exception{$ENDIF});
ELSNotAssigned = class(ELSException);
{===============================================================================
--------------------------------------------------------------------------------
TListSorter
--------------------------------------------------------------------------------
===============================================================================}
type
TCompareMethod = Function(Index1,Index2: Integer): Integer of object;
TCompareFunction = Function(Context: Pointer; Index1,Index2: Integer): Integer;
TExchangeMethod = procedure(Index1,Index2: Integer) of object;
TExchangeFunction = procedure(Context: Pointer; Index1,Index2: Integer);
TBreakEvent = procedure(Sender: TObject; var Break: Boolean) of object;
TBreakCallback = procedure(Context: Pointer; Sender: TObject; var Break: Boolean);
{===============================================================================
TListSorter - class declaration
===============================================================================}
TListSorter = class(TCustomObject)
protected
fReversed: Boolean;
fStabilized: Boolean;
fContext: Pointer;
fLowIndex: Integer;
fHighIndex: Integer;
fReversedCompare: Boolean;
fCompareMethod: TCompareMethod;
fCompareFunction: TCompareFunction;
fExchangeMethod: TExchangeMethod;
fExchangeFunction: TExchangeFunction;
fCompareCoef: Integer;
fBreakProcessing: Boolean;
fOnBreakEvent: TBreakEvent;
fOnBreakCallback: TBreakCallback;
// some statistics
fCompareCount: Integer;
fExchangeCount: Integer;
// sorting stabilization
fIndexArray: array of Integer;
Function CompareItems(Index1,Index2: Integer): Integer; virtual;
procedure ExchangeItems(Index1,Index2: Integer); virtual;
Function DoBreak: Boolean; virtual;
procedure InitCompareCoef; virtual;
procedure InitStatistics; virtual;
procedure Execute; virtual; abstract; // must be implemented by descendants
public
constructor Create; overload;
constructor Create(CompareMethod: TCompareMethod; ExchangeMethod: TExchangeMethod); overload;
constructor Create(Context: Pointer; CompareFunction: TCompareFunction; ExchangeFunction: TExchangeFunction); overload;
destructor Destroy; override;
procedure Initialize(CompareMethod: TCompareMethod; ExchangeMethod: TExchangeMethod); overload; virtual;
procedure Initialize(Context: Pointer; CompareFunction: TCompareFunction; ExchangeFunction: TExchangeFunction); overload; virtual;
Function Sorted(LowIndex, HighIndex: Integer): Boolean; overload; virtual;
Function Sorted: Boolean; overload; virtual;
procedure Sort(LowIndex, HighIndex: Integer); overload; virtual;
procedure Sort; overload; virtual;
property Reversed: Boolean read fReversed write fReversed;
property Stabilized: Boolean read fStabilized write fStabilized;
property Context: Pointer read fContext write fContext;
property LowIndex: Integer read fLowIndex write fLowIndex;
property HighIndex: Integer read fHighIndex write fHighIndex;
property ReversedCompare: Boolean read fReversedCompare write fReversedCompare;
property CompareMethod: TCompareMethod read fCompareMethod write fCompareMethod;
property CompareFunction: TCompareFunction read fCompareFunction write fCompareFunction;
property ExchangeMethod: TExchangeMethod read fExchangeMethod write fExchangeMethod;
property ExchangeFunction: TExchangeFunction read fExchangeFunction write fExchangeFunction;
property CompareCount: Integer read fCompareCount;
property ExchangeCount: Integer read fExchangeCount;
property OnBreak: TBreakEvent read fOnBreakEvent write fOnBreakEvent;
property OnBreakEvent: TBreakEvent read fOnBreakEvent write fOnBreakEvent;
property OnBreakCallback: TBreakCallback read fOnBreakCallback write fOnBreakCallback;
end;
{===============================================================================
--------------------------------------------------------------------------------
TListBubbleSorter
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TListBubbleSorter - class declaration
===============================================================================}
TListBubbleSorter = class(TListSorter)
protected
procedure Execute; override;
end;
{===============================================================================
--------------------------------------------------------------------------------
TListQuickSorter
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TListQuickSorter - class declaration
===============================================================================}
TListQuickSorter = class(TListSorter)
protected
procedure Execute; override;
end;
{===============================================================================
--------------------------------------------------------------------------------
TListBogoSorter
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TListBogoSorter - class declaration
===============================================================================}
// only for fun, do not use, seriously...
TListBogoSorter = class(TListSorter)
protected
procedure Execute; override;
end;
implementation
{===============================================================================
--------------------------------------------------------------------------------
TListSorter
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TListSorter - class implementation
===============================================================================}
{-------------------------------------------------------------------------------
TListSorter - protected methods
-------------------------------------------------------------------------------}
Function TListSorter.CompareItems(Index1,Index2: Integer): Integer;
begin
Result := 0;
If not DoBreak and (Index1 <> Index2) then
begin
If Assigned(fCompareMethod) then
Result := fCompareMethod(Index1,Index2) * fCompareCoef
else If Assigned(fCompareFunction) then
Result := fCompareFunction(fContext,Index1,Index2) * fCompareCoef
else
Result := 0;
Inc(fCompareCount);
// stabilization
If (Result = 0) and (Length(fIndexArray) > 0) then
Result := (fIndexArray[Index1 - fLowIndex] - fIndexArray[Index2 - fLowIndex]);
If fReversed then
Result := -Result;
end;
end;
//------------------------------------------------------------------------------
procedure TListSorter.ExchangeItems(Index1,Index2: Integer);
var
TempIdx: Integer;
begin
If not DoBreak and (Index1 <> Index2) then
begin
If Assigned(fExchangeMethod) then
fExchangeMethod(Index1,Index2)
else If Assigned(fExchangeFunction) then
fExchangeFunction(fContext,Index1,Index2);
Inc(fExchangeCount);
// stabilization
If Length(fIndexArray) > 0 then
begin
TempIdx := fIndexArray[Index1 - fLowIndex];
fIndexArray[Index1 - fLowIndex] := fIndexArray[Index2 - fLowIndex];
fIndexArray[Index2 - fLowIndex] := TempIdx;
end;
end;
end;
//------------------------------------------------------------------------------
Function TListSorter.DoBreak: Boolean;
begin
If not fBreakProcessing then
begin
Result := False;
If Assigned(fOnBreakEvent) then
fOnBreakEvent(Self,Result)
else If Assigned(fOnBreakCallback) then
fOnBreakCallback(fContext,Self,Result);
If Result then
fBreakProcessing := True;
end
else Result := True;
end;
//------------------------------------------------------------------------------
procedure TListSorter.InitCompareCoef;
begin
If fReversedCompare then
fCompareCoef := -1
else
fCompareCoef := 1;
end;
//------------------------------------------------------------------------------
procedure TListSorter.InitStatistics;
begin
fCompareCount := 0;
fExchangeCount := 0;
end;
{-------------------------------------------------------------------------------
TListSorter - public methods
-------------------------------------------------------------------------------}
constructor TListSorter.Create;
begin
inherited Create;
fReversed := False;
fStabilized := False;
fContext := nil;
fLowIndex := 0;
fHighIndex := -1;
fCompareMethod := nil;
fCompareFunction := nil;
fExchangeMethod := nil;
fExchangeFunction := nil;
fCompareCoef := 1;
fBreakProcessing := False;
fOnBreakEvent := nil;
fOnBreakCallback := nil;
InitStatistics;
SetLength(fIndexArray,0);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
constructor TListSorter.Create(CompareMethod: TCompareMethod; ExchangeMethod: TExchangeMethod);
begin
Create;
Initialize(CompareMethod,ExchangeMethod);
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
constructor TListSorter.Create(Context: Pointer; CompareFunction: TCompareFunction; ExchangeFunction: TExchangeFunction);
begin
Create;
Initialize(Context,CompareFunction,ExchangeFunction);
end;
//------------------------------------------------------------------------------
destructor TListSorter.Destroy;
begin
SetLength(fIndexArray,0);
inherited;
end;
//------------------------------------------------------------------------------
procedure TListSorter.Initialize(CompareMethod: TCompareMethod; ExchangeMethod: TExchangeMethod);
begin
If Assigned(CompareMethod) then
begin
If Assigned(ExchangeMethod) then
begin
fCompareMethod := CompareMethod;
fExchangeMethod := ExchangeMethod;
end
else raise ELSNotAssigned.Create('TListSorter.Initialize: Exchange method not assigned.');
end
else raise ELSNotAssigned.Create('TListSorter.Initialize: Compare method not assigned.');
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
procedure TListSorter.Initialize(Context: Pointer; CompareFunction: TCompareFunction; ExchangeFunction: TExchangeFunction);
begin
If Assigned(Context) then
begin
If Assigned(CompareFunction) then
begin
If Assigned(CompareFunction) then
begin
fContext := Context;
fCompareFunction := CompareFunction;
fExchangeFunction := ExchangeFunction;
end
else raise ELSNotAssigned.Create('TListSorter.Initialize: Exchange function not assigned.');
end
else raise ELSNotAssigned.Create('TListSorter.Initialize: Compare function not assigned.');
end
else raise ELSNotAssigned.Create('TListSorter.Initialize: Context not assigned.');
end;
//------------------------------------------------------------------------------
Function TListSorter.Sorted(LowIndex, HighIndex: Integer): Boolean;
begin
fLowIndex := LowIndex;
fHighIndex := HighIndex;
Result := Self.Sorted;
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Function TListSorter.Sorted: Boolean;
var
i: Integer;
begin
Result := True;
InitCompareCoef;
fBreakProcessing := False;
For i := fLowIndex to Pred(fHighIndex) do
begin
If fBreakProcessing then
begin
Result := False;
Exit;
end
else If CompareItems(i,i + 1) > 0 then
begin
Result := False;
Break{For i};
end;
end;
end;
//------------------------------------------------------------------------------
procedure TListSorter.Sort(LowIndex, HighIndex: Integer);
begin
fLowIndex := LowIndex;
fHighIndex := HighIndex;
Sort;
end;
// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
procedure TListSorter.Sort;
var
i: Integer;
begin
InitCompareCoef;
InitStatistics;
If fHighIndex > fLowIndex then
begin
If fStabilized then
begin
// initialize index array for stabilization
SetLength(fIndexArray,fHighIndex - fLowIndex + 1);
For i := Low(fIndexArray) to High(fIndexArray) do
fIndexArray[i] := i;
end
else SetLength(fIndexArray,0); // to be sure
try
fBreakProcessing := False;
// descendants must observe and react to fBreakProcessing being true
Execute;
finally
SetLength(fIndexArray,0); // clear the array after use
end;
end;
end;
{===============================================================================
--------------------------------------------------------------------------------
TListBubbleSorter
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TListBubbleSorter - class implementation
===============================================================================}
{-------------------------------------------------------------------------------
TListBubbleSorter - protected methods
-------------------------------------------------------------------------------}
procedure TListBubbleSorter.Execute;
var
i,j: Integer;
ExchCntr: Integer;
begin
For i := fHighIndex downto fLowIndex do
begin
ExchCntr := 0;
For j := fLowIndex to Pred(i) do
begin
If CompareItems(j,j + 1) > 0 then
begin
ExchangeItems(j,j + 1);
Inc(ExchCntr);
end;
If fBreakProcessing then
Exit;
end;
If ExchCntr <= 0 then
Break{For i};
end;
end;
{===============================================================================
--------------------------------------------------------------------------------
TListQuickSorter
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TListQuickSorter - class implementation
===============================================================================}
{-------------------------------------------------------------------------------
TListQuickSorter - protected methods
-------------------------------------------------------------------------------}
procedure TListQuickSorter.Execute;
procedure QuickSort(Left,Right: Integer);
var
PivotIdx,LowIdx,HighIdx: Integer;
begin
repeat
LowIdx := Left;
HighIdx := Right;
PivotIdx := (Left + Right) shr 1;
repeat
while CompareItems(PivotIdx,LowIdx) > 0 do
begin
If fBreakProcessing then
Exit;
Inc(LowIdx);
end;
while CompareItems(PivotIdx,HighIdx) < 0 do
begin
If fBreakProcessing then
Exit;
Dec(HighIdx);
end;
If LowIdx <= HighIdx then
begin
ExchangeItems(LowIdx,HighIdx);
If fBreakProcessing then
Exit;
If PivotIdx = LowIdx then
PivotIdx := HighIdx
else If PivotIdx = HighIdx then
PivotIdx := LowIdx;
Inc(LowIdx);
Dec(HighIdx);
end;
until LowIdx > HighIdx;
If Left < HighIdx then
QuickSort(Left,HighIdx);
If fBreakProcessing then
Exit;
Left := LowIdx;
until LowIdx >= Right;
end;
begin
QuickSort(fLowIndex,fHighIndex);
end;
{===============================================================================
--------------------------------------------------------------------------------
TListBogoSorter
--------------------------------------------------------------------------------
===============================================================================}
{===============================================================================
TListBogoSorter - class implementation
===============================================================================}
{-------------------------------------------------------------------------------
TListBogoSorter - protected methods
-------------------------------------------------------------------------------}
procedure TListBogoSorter.Execute;
var
i: Integer;
begin
Randomize;
while not Sorted do
begin
If fBreakProcessing then
Exit;
For i := fLowIndex to Pred(fHighIndex) do
begin
If Random(2) <> 0 then
ExchangeItems(i,i + 1);
If fBreakProcessing then
Exit;
end;
end;
end;
end.