排序算法实现(下)

④希尔排序

时间复杂度:n^1.25 ~ 1.6n^1.25。

优点:快,数据移动少。

缺点:不稳定,增量的选择无法确切知道,只能凭经验来取。

 

template <class Record>
void Sortable_list<Record>::shell_sort() {
    int increment, start;
    increment = count;
    do {
        increment = increment/3+1;
        for (start = 0; start < increment; start++) {
            sort_interval(start, increment); //插入排序 
        }
    } while (increment > 1);
}

 

 

⑤归并排序

时间复杂度:O(nlgn)。

优点:稳定,快。

缺点:需要O(n)的辅助空间,空间复杂度高。

//链表
template <class Record>
void Sortable_list<Record>::merge_sort() {
    recursive_merge_sort(head);
}
template <class Record>
void Sortable_list<Record>::recursive_merge_sort(Node<Record>* &sub_list) {
    if (sub_list != NULL && sub_list->next != NULL) {
        Node<Record>* second_half = divide_from(sub_list);
        recursive_merge_sort(sub_list);
        recursive_merge_sort(second_half);
        sub_list = merge(sub_list, second_half);
    }
}
//将一个链表分成两半
template <class Record>
void Sortable_list<Record>::divide_from(Node<Record>* sub_list) {
    Node<Record>* position,
                * midpoint,
                *second_half;
    if ((midpoint = sub_list) == NULL) return NULL;
    position = midpoint->next;
    while (position != NULL) {
        position = position->next;
        if (position != NULL) {
            midpoint = midpoint->next;
            position = position->next;
        }
    }
    second_half = midpoint->next;
    midpoint->next = NULL;
    return second_half;
}
//归并两个已排序的链表
template <class Record>
void Sortable_list<Record>::merge(Node<Record>* first, Node<Record>* second) {
    Node<Record>* last_sorted;
    Node<Record> combined;
    last_sorted = &combined;
    while (first != NULL && second != NULL) {
        if (first->entry <= second->entry) {
            last_sorted->next = first;
            last_sorted = first;
            first = first->next;
        }
        else {
            last_sorted->next = second;
            last_sorted = second;
            second = second->next;
        }
    }
    if (first == NULL) last_sorted->next = second;
    else last_sorted->next = first;
    return combined->next;
}

 

⑥快速排序

时间复杂度:O(nlgn)。

优点:极快,数据移动少。

缺点:不稳定。

 

//快速排序 O(nlgn)
template <class Record>
void Sortable_list<Record>::quick_sort() {
    recursive_quick_sort(0, count-1);
}
template <class Record>
void Sortable_list<Record>::recursive_quick_sort(int low, int high) {
    int pivot_position;
    if (low < high) {
        pivot_position = partition(low, high);
        recursive_quick_sort(low, pivot_position-1);
        recursive_quick_sort(pivot_position+1, high);
    }
}
template <class Record>
void Sortable_list<Record>::partition(int low, int high) {
    Record pivot;
    int i, last_small;
    swap(low, (low+high)/2);
    pivot = entry[low];
    last_small = low;
    for (i = low+1; i < high; i++) {
        if (entry[i] < pivot) {
            last_small = last_small+1;
            swap(last_small, i);
        }
    }
    swap(low, last_small);
    return last_small;
}

 

 

 

 

 

 

⑦堆排序

时间复杂度:O(nlgn)。

优点:空间复杂度小。

缺点:只适用于顺序表。

//堆排序 O(nlgn)
//只适用于顺序表
template <class Record>
void Sortable_list<Record>::heap_sort() {
    Record current;
    int last_unsorted;
    build_heap();
    for (last_unsorted = count-1; last_unsorted > 0; last_unsorted--) {
        current = entry[last_unsorted];
        entry[last_unsorted] = entry[0];
        insert_heap(current, 0, last_unsorted-1);
    }
}
template <class Record>
void Sortable_list<Record>::insert_heap(const Record ¤t, int low, int high) {
    int large;
    large = 2*low+1;
    while (large <= high) {
        if (large < high && entry[large] < entry[large+1]) large++;
        if (current >= entry[large]) break;
        else {
            entry[low] = entry[large];
            low = large;
            large = 2*low+1;
        }
    }
    entry[low] = current;
}
template <class Record>
void Sortable_list<Record>::build_heap() { //建立初始的堆
    int low;
    for (low = count/2-1; low >= 0; low--) {
        Record current = entry[low];
        insert_heap(current, low, count-1);
    }
}

  另一种写法:

public void HeapAdjust(int[] array, int parent, int length) {
    int temp = array[parent]; // temp保存当前父节点
    int child = 2 * parent + 1; // 先获得左孩子

    while (child < length) {
        // 如果有右孩子结点,并且右孩子结点的值大于左孩子结点,则选取右孩子结点
        if (child + 1 < length && array[child] < array[child + 1]) {
            child++;
        }

        // 如果父结点的值已经大于孩子结点的值,则直接结束
        if (temp >= array[child])
            break;

        // 把孩子结点的值赋给父结点
        array[parent] = array[child];

        // 选取孩子结点的左孩子结点,继续向下筛选
        parent = child;
        child = 2 * child + 1;
    }

    array[parent] = temp;
}

public void heapSort(int[] list) {
    // 循环建立初始堆
    for (int i = list.length / 2; i >= 0; i--) {
        HeapAdjust(list, i, list.length);
    }

    // 进行n-1次循环,完成排序
    for (int i = list.length - 1; i > 0; i--) {
        // 最后一个元素和第一元素进行交换
        int temp = list[i];
        list[i] = list[0];
        list[0] = temp;

        // 筛选 R[0] 结点,得到i-1个结点的堆
        HeapAdjust(list, 0, i);
    }
}

 

 

 

 

  • 1
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值