Skip to content

Instantly share code, notes, and snippets.

@mikah13
Created November 17, 2017 08:01
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mikah13/a0aee35512e8d42864fb919294bd80d8 to your computer and use it in GitHub Desktop.
Save mikah13/a0aee35512e8d42864fb919294bd80d8 to your computer and use it in GitHub Desktop.
Bubble Sort
begin BubbleSort(list)
for all elements of list
if list[i] > list[i+1]
swap(list[i], list[i+1])
end if
end for
return list
end BubbleSort
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment