(Python 神奇資料結構) Counter計數器
# Counter 計數器
前言:在演算法中我們有時候會需要計算可迭代物件中的個別元素數量,Python 內建的 Counter 可以幫我們在實現這個功能之外,效能優化也是挺不錯的。
# 建立 Counter
123456import collections.Counterc = Counter() # a new, empty counterc = Counter('gallahad') # a new counter from an iterablec = Counter({'red': 4,...
more...