码迷,mamicode.com
首页 > 编程语言 > 详细

堆排序

时间:2017-07-30 00:13:16      阅读:111      评论:0      收藏:0      [点我收藏+]

标签:amp   else   数组   swa   oid   break   class   swap   int   

利用数组0位置作为守卫

#define LeftChild(i) (2*(i)+1)

void PercDown(ElementType A[], int i, int N) {
    int child;
    ElementType tmp;
    for (tmp=A[i]; LeftChild(i)<N; i=child) {
        child = LeftChild(i);
        if (child != N-1 && A[child + 1]>A[child]) {
            child++;
        }
        if (tmp < A[child]) {
            A[i] = A[child];
        }
        else
            break;
    }
    A[i] = tmp;
}

void Heapsort(ElementType A[], int N) {
    int i;
    for (i=N/2; i>=0; i++) {
        PercDown(A, N);
    }
    for (i=N-1; i>0; i--) {
        swap(&A[0], &A[i]);
        PercDown(A, 0, i);
    }
}

 

堆排序

标签:amp   else   数组   swa   oid   break   class   swap   int   

原文地址:http://www.cnblogs.com/m2492565210/p/7257847.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!