python演算法學習之基數排序執行個體_python

來源:互聯網
上載者:User

基數排序法又稱桶子法(bucket sort)或bin sort,顧名思義,它是透過索引值的部份資訊,將要排序的元素分配至某些"桶"中,藉以達到排序的作用,基數排序法是屬於穩定性的排序,其時間複雜度為O (nlog(r)m),其中r為所採取的基數,而m為堆數,在某些時候,基數排序法的效率高於其它的比較性排序法。

複製代碼 代碼如下:

# -*- coding: utf-8 -*-

def _counting_sort(A, i):
    """計數排序,以i位進行排序,以適用於基數排序。
    Args:
        A (Sequence): 排序數組
        i (int): 位元,從0開始而不是1
    """
    C = [0] * 10 # 任意位值範圍為[0,9]
    A = [(a / (10 ** i) % 10, a) for a in A] # 元素i位值及其自身的元組的數組
    for k, a in A:
        C[k] = C[k] + 1
    for i in xrange(1, 10):
        C[i] = C[i] + C[i-1]
    B = [0] * len(A) # 結果數組
    for k, a in A[::-1]:
        B[C[k]-1] = a
        C[k] = C[k] - 1
    return B

def radix_sort(A, d):
    """基數排序,從最低位進行排序直到最高位:
    RADIX-SORT(A, d)
    1  for i ← 1 to d
    2    do use a stable sort to sort array A on digit i

    Args:
        A (Sequence): 排序數組
        d (int): 最大數位元
    """
    for i in xrange(d): # 遍曆位元,從低到高
        A = _counting_sort(A, i)
    return A

def rsort(A, d):
    """基數排序(桶排序版本)"""
    for i in xrange(d): # 遍曆位元,從低到高
        S = [[] for _ in xrange(10)] # 存放[0,9]位元值所對應元素([0-9]10個桶)
        for a in A: # 遍曆元素
            S[a / (10 ** i) % 10].append(a) # 存放對應位元值的元素(元素當前位值在哪個桶就放進去)
        A = [a for b in S for a in b] # 以當前位元值排序好的A(依次從各桶裡把元素拿出來)
    return A

if __name__ == '__main__':
    import random, timeit

    items = range(10000)
    random.shuffle(items)

    def test_sorted():
        print(items)
        sorted_items = sorted(items)
        print(sorted_items)

    def test_radix_sort():
        print(items)
        sorted_items = radix_sort(items, 4) # [0,9999],4位元
        print(sorted_items)

    test_methods = [test_sorted, test_radix_sort]
    for test in test_methods:
        name = test.__name__ # test.func_name
        t = timeit.Timer(name + '()', 'from __main__ import ' + name)
        print(name + ' takes time : %f' % t.timeit(1))

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.