Notice
Recent Posts
Recent Comments
Link
목록정렬(Sort)/bubble Sort(버블정렬) (1)
Cronex
bubble sort 버블정렬
Jungsangjin0/sort-practice Contribute to Jungsangjin0/sort-practice development by creating an account on GitHub. github.com package sort.bubble; import java.util.Arrays; public class BubbleSort { public static void main(String[] args) { /*배열의 크기 10으로 초기화*/ int[]numArr = new int[10]; //numArr.length = 10 0 ~9 for(int i = 0; i < numArr.length; i++) { /*1 ~ 9까지random수로 배열 초기화*/ numArr[i] = (int)((..
정렬(Sort)/bubble Sort(버블정렬)
2021. 6. 14. 13:07