Skip to content

Instantly share code, notes, and snippets.

@goesang
Created June 23, 2015 15:01
Show Gist options
  • Save goesang/f5f72a81a57b2157c3ed to your computer and use it in GitHub Desktop.
Save goesang/f5f72a81a57b2157c3ed to your computer and use it in GitHub Desktop.
버블 소트 자바스크립트 간단 버젼
function bubbleSort(arr){
for(var i = arr.length;i>0;i--)
for(var j = 0;j<i-1;j++)
if(arr[j]>arr[j+1]){
var tmp = arr[j];
arr[j] = arr[j+1];
arr[j+1] = tmp;
}
return arr;
}
alert(bubbleSort([0,50,6,3,5,2,1,2]));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment