python deque與列表的區別


python deque與列表的區別:

  • 根據index讀list,時間復雜度為O(1),deque是O(n)
  • 在兩頭插入數據,deque的時間復雜度為O(1), list為O(n)
  • deque是一個雙向鏈表,所以操作頭尾非常簡單。
  • 隨機往中間插入數據,deque與list的時間復雜度都是O(n)

 

 

deque 是 double-ended queue的縮寫,類似於 list,不過提供了在兩端插入和刪除的操作。

  •  appendleft 在列表左側插入
  •  popleft 彈出列表左側的值
  •  extendleft 在左側擴展

 

 

 

例如:

from collections import deque
queue = deque()
queue.appendleft("first")
queue.appendleft("second")
queue.appendleft("third")

process(queue.pop()) 
queue.appendleft("fourth")

queue 
# deque(['fourth', 'third', 'second'])

 

 

作為一個雙端隊列,deque還提供了一些其他的好用方法,比如 rotate 等,下面我們一起來看一下:

填充
deque可以從任意一端填充,在python實現稱為“左端”和“右端”。extendleft()迭代處理其輸入,對每個元素完成與appendleft()相同的處理。

 
from collections import deque
d1 = deque()
d1.extend('abcdefg')
d1.append('h')
print(d1)  # deque(['a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'])
d2 = deque()
d2.extendleft(range(6))
d2.appendleft(6)
print(d2)   # deque([6, 5, 4, 3, 2, 1, 0])

 

 

利用
可以從兩端利用deque元素,取決於應用的算法。

 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
import  collections
print  "From the right:"
=  collections.deque( 'abcdefg' )
while  True :
  try :
   print  d.pop(),
  except  IndexError:
   break
print
print  "\nFrom the left:"
=  collections.deque( xrange ( 6 ))
while  True :
  try :
   print  d.popleft(),
  except  IndexError:
   break
print

使用pop()可以從deque右端刪除一個元素,使用popleft()可以從deque左端刪除一個元素。

 
1
2
3
4
5
From the right:
g f e d c b a
 
From the left:
0 1 2 3 4 5

由於雙端隊列是線程安全的,可以在不同的線程中同時從兩端利用隊列的內容。

 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import  collections
import  threading
import  time
candle  =  collections.deque( xrange ( 5 ))
def  burn(direction, nextSource):
  while  True :
   try :
    next  =  nextSource()
   except  IndexError:
    break
   else :
    print  '%8s: %s'  %  (direction,  next )
    time.sleep( 0.1 )
  print  '%8s done'  %  direction
  return
left  =  threading.Thread(target = burn, args = ( 'Left' , candle.popleft))
right  =  threading.Thread(target = burn, args = ( 'Right' , candle.pop))
left.start()
right.start()
left.join()
right.join()

線程交替處理兩端,刪除元素,知道這個deque為空。

 
1
2
3
4
5
6
7
Left: 0 Right: 4
 
Right: 3 Left: 1
 
Right: 2 Left done
 
Right done

旋轉
deque另外一個作用可以按照任意一個方向旋轉,而跳過一些元素。

 
1
2
3
4
5
6
7
8
9
import  collections
=  collections.deque( xrange ( 10 ))
print  'Normal:' , d
d =  collections.deque( xrange ( 10 ))
d.rotate( 2 )
print  'Right roration:' , d
=  collections.deque( xrange ( 10 ))
d.rotate( - 2 )
print  'Left roration:' , d

結果:

 
1
2
3
Normal: deque([0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
Right roration: deque([8, 9, 0, 1, 2, 3, 4, 5, 6, 7])
Left roration: deque([2, 3, 4, 5, 6, 7, 8, 9, 0, 1])

 

再舉個例子:一個無盡循環的跑馬燈(我設置了count1,若想一直跑直接while True)

fancy_loading = deque('>-------------------')
count1 = 0
while count1 <= 2:
    print('\r%s' % ''.join(fancy_loading))
    fancy_loading.rotate(1)
    sys.stdout.flush()
    time.sleep(0.08)
    count1 += 0.05

 

 

 

 

拾人牙慧的網址:

http://www.zzvips.com/article/99737.html

https://cloud.tencent.com/developer/article/1355384

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM