Algorithm
자료구조 :: JAVA를 이용한 퀵 정렬, Quick Sort, 퀵 소트 (JAVA 구현)
퀵 소트 Quick sort 이론적인 내용이 궁금하면 아래 글을 참고 할 것 2018/04/28 - [Algorithm] - 자료구조 :: 퀵 정렬 Quick sort (c/c++ 구현) JAVA를 이용하여 퀵소트를 구현해보자 Pivot을 데이터의 맨 처음 값으로 한 경우 public class Quick { private static int number = 11; private static int[] data; private static int cnt = 0; // quick_sort 호출 횟수 public static void quick_sort(int[] data, int x, int y) { cnt++; if (x >= y) { // 원소가 1개인 경우 return; } int pivot = x;..
2018. 5. 2. 17:03
최근댓글