首页 > 其他 > 详细

quicksort liner find kth smallest or

时间:2014-02-17 00:59:35      阅读:505      评论:0      收藏:0      [点我收藏+]
bubuko.com,布布扣
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;
}
bubuko.com,布布扣

 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

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!