Bubble sort

From Algowiki
Revision as of 15:31, 25 September 2014 by Lkw (talk | contribs) (Created page with "== Pseudocode == <code> BUBBLESORT(''A'') 1 '''for''' ''i'' = 1 '''to''' "A.length" - 1 2 '''for'' ''j'' = ''A.length'' '''downto''' ''i'' + 1 3 '''if''...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Pseudocode

BUBBLESORT(A)
1 for i = 1 to "A.length" - 1 
2      for j = A.length downto' i + 1
3            if A[j] < A[j - 1]
4                  exchange A[j] with A[j - 1]