Difference between revisions of "BubbleSortB"
From SCAR Divi Manual
(Created page with "==Definition== <source lang="scar" lines="false"> procedure BubbleSortB(var Values: TIntegerArray); </source> ==Availability== SCAR Divi 3.11 > Current ==Description== Uses the...") |
(No difference)
|
Revision as of 23:25, 1 July 2011
Definition
procedure BubbleSortB(var Values: TIntegerArray);
Availability
SCAR Divi 3.11 > Current
Description
Uses the bubblesort sorting algorithm to sort a given set of integer values specified by the TIntegerArray Values. The values will be sorted small->large.
Example
var Values: TIntegerArray; i: Integer; begin Values := [9, 1, 8, 2, 4]; BubbleSort(Values); for i := Low(Values) to High(Values) do WriteLn(Values[i]); end.
Output:
1 2 4 8 9