Skip to content

Instantly share code, notes, and snippets.

@shameemreza
Created June 5, 2018 09:04
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 shameemreza/3f8d3bdaeca80d297dc0584a7ac6f31b to your computer and use it in GitHub Desktop.
Save shameemreza/3f8d3bdaeca80d297dc0584a7ac6f31b to your computer and use it in GitHub Desktop.
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