Python 快速排序

來源:互聯網
上載者:User

標籤:gpo   nlog   最好   空間複雜度   post   source   star   空間   tar   

最好情況:時間複雜度 O(nlog2n)
最壞情況:逆序序列,時間複雜度為O(n2)
平均時間複雜度:O(nlogn)
空間複雜度:O(nlog2n)
穩定性:不穩定

array_test = [5, 9, 10, 6, 5, 26, 17, 4, 11, 8]def quick_sort(array, low, high):    if low >= high:        return    key = array[low]    start, end = low, high    while low < high:        while low < high and array[high] >= key:            high -= 1                    if low < high:            array[low] = array[high]            low += 1        while low < high and array[low] <= key:            low += 1                    if low < high:            array[high] = array[low]            high -= 1    array[low] = key        quick_sort(array, start, low - 1)    quick_sort(array, high + 1, end)    return arrayprint(quick_sort(array_test, 0, len(array_test) - 1))

輸出:[4, 5, 5, 6, 8, 9, 10, 11, 17, 26]

Python 快速排序

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.