#26770: [Python]有哪些解法呢?


406490150@gms.tku.edu.tw (我是朱朱)

學校 : 國立交通大學
編號 : 139794
來源 : [140.113.236.122]
最後登入時間 :
2022-09-03 11:13:16
e447. queue 練習 | From: [114.39.242.145] | 發表日期 : 2021-08-24 15:09

  1. 使用Python內建的list   (我測起來這題的測資 使用這個方法最快)
  2. 使用collections.deque


  3. 注意!如果你想使用queue.Queue應該是行不通的,因為沒有辦法直接索引第一個元素而不丟掉

 

See also

collections.deque is an alternative implementation of unbounded queues with fast atomic append() and popleft() operations that do not require locking and also support indexing.

 
 
ZeroJudge Forum