void swap(int *a, int *b){ int temp = *a; *a = *b; *b = temp; } int partition(int A[], int start, int end){ int i= start+1; int j = i; int pivot = start; for(; i<end; i++){ if(A[i]<A[pivot]){ swap(&A[i],&A[j]); j++; } } if(j<=end){ swap(&A[pivot],&A[j-1]); } for(i=0;i<10;i++){ printf("%d ", A[i] ); } printf("\n"); return j-1; } void quick_sort(int A[], int start, int end, int K){ int part ; if(start <end) { part = partition(A, start, end); if(part == K-1){ printf("kth smallest element : %d" , A[part]); } if(part>K-1){ quick_sort(A, start,part, K); } else{ quick_sort(A, part+1, end, K); } } return; }
Take and array of size N and Sort by distance. Should be used QuickSort (Hoare modification). As answer take first K points. This is too NlogN complexity but it is possible optimize to approximate O(N). If skip sorting of unnecessary sub arrays. When you split array by 2 sub arrays you should take only array where Kth index located. complexity will be : N +N/2 +N/4 + ... = O(N).
quicksort liner find kth smallest or
原文:http://www.cnblogs.com/leetcode/p/3551417.html