Difference between revisions of "BubbleSortB"
From SCAR Divi Manual
| Line 5: | Line 5: | ||
==Availability== | ==Availability== | ||
| − | SCAR Divi 3.11 > Current | + | SCAR Divi 3.11 > Current <span style="color:#FF0000">(Deprecated, use [[SortTIA]] and [[InvertTIA]])</span> |
* '''Values''' was a [[TIntegerArray]] before SCAR Divi 3.28. | * '''Values''' was a [[TIntegerArray]] before SCAR Divi 3.28. | ||
| Line 36: | Line 36: | ||
*[[QuickSort]] | *[[QuickSort]] | ||
| − | [[Category: | + | [[Category:Deprecated Functions]] |
| − | |||
Revision as of 18:51, 24 October 2011
Definition
procedure BubbleSortB(var Values: TIntArray);
Availability
SCAR Divi 3.11 > Current (Deprecated, use SortTIA and InvertTIA)
- Values was a TIntegerArray before SCAR Divi 3.28.
Description
Uses the bubblesort sorting algorithm to sort a given set of integer values specified by the TIntArray Values. The values will be sorted large->small.
Example
var
Values: TIntArray;
i: Integer;
begin
Values := [9, 1, 8, 2, 4];
BubbleSortB(Values);
for i := Low(Values) to High(Values) do
WriteLn(Values[i]);
end.Output:
9 8 4 2 1