轉載:python list和set的效能比較+兩者轉換

來源:互聯網
上載者:User

標籤:

 

兩者效能比較(轉自http://www.linuxidc.com/Linux/2012-07/66404.htm)

本來是知道在Python中使用Set是比較高效,但是沒想到竟然有這麼大的差距:

~$ python -m timeit -n 1000 "[x for x in range(1000) if x in range(500, 1500)]"

1000 loops, best of 3: 28.2 msec per loop

~$ python -m timeit -n 1000 "set(range(1000)).intersection(range(500, 1500))"

1000 loops, best of 3: 120 usec per loop

List 大概用了Set的225倍的時間。List轉Set基本用不了什麼時間,所以如果有需要求(集合,列表等)的並集和交集的時候,最好使用Set。

【更新】

考慮到range(500, 1500) 調用了1000次(會比較耗時),改成只調用一次的話,時間從28.2msec降到了18.2msec。仍然要(比Set)慢大概150倍。

~$  python -m timeit -n 1000 "range1500=range(500, 1500);[x for x in range(1000) if x in range1500]"

---------------------------------------------------------------------------------------

set轉成list方法如下:                                                     list轉成set方法如下:

s = set(‘12342212‘)                                                       l = [‘12342212‘]

print s    # set([‘1‘, ‘3‘, ‘2‘, ‘4‘])                                       s = set(l[0])

l = list(s)                                                                         print s    # set([‘1‘, ‘3‘, ‘2‘, ‘4‘])

l.sort()    # 排序                                                             m = [‘11‘,‘22‘,‘33‘,‘44‘,‘11‘,‘22‘]

print l    # [‘1‘, ‘2‘, ‘3‘, ‘4‘]                                               print set(m)    # set([‘11‘, ‘33‘, ‘44‘, ‘22‘])

可見set和lsit可以自由轉換,在刪除list中多個/海量重複元素時,

可以先轉換成set,然後再轉回list並排序(set沒有排序)。此種方法不僅方便且效率較高。

轉載:python list和set的效能比較+兩者轉換

相關文章

聯繫我們

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