Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,872 questions

51,796 answers

573 users

How to implement the bubble sort algorithm in Pascal

1 Answer

0 votes
program BubbleSort;

uses SysUtils;

procedure BubbleSort(var arr: array of Integer);
var
  size, i: Integer;
  swapped: Boolean;
begin
  size := Length(arr);
  swapped := True;

  while swapped do
  begin
    swapped := False;
    for i := 1 to size - 1 do
    begin
      if arr[i - 1] > arr[i] then
      begin
        arr[i - 1] := arr[i - 1] + arr[i];
        arr[i] := arr[i - 1] - arr[i];
        arr[i - 1] := arr[i - 1] - arr[i];
        swapped := True;
      end;
    end;
    size := size - 1;
  end;
end;

var
  arr: array[0..9] of Integer = (3, 14, 4, 1, 5, 90, 2, 6, 89, 7);
  i: Integer;

begin
  BubbleSort(arr);
  
  Write('Sorted array: ');
  for i := 0 to High(arr) do
  begin
    Write(arr[i], ' ');
  end;
  Writeln;
end.



(*
run:

Sorted array: 1 2 3 4 5 6 7 14 89 90 

*)

 



answered Jan 18, 2025 by avibootz

Related questions

1 answer 57 views
1 answer 70 views
1 answer 84 views
1 answer 85 views
1 answer 124 views
1 answer 182 views
...