码迷,mamicode.com
首页 > 编程语言 > 详细

Python 中的collections 模块

时间:2015-05-17 02:13:36      阅读:333      评论:0      收藏:0      [点我收藏+]

标签:collections deque counter defaultdict

这个模块中实现了一些类,非常灵活。可以用于替代python 内置的dict 、list 、tuple 、set 类型。并且一些功能是这些内置类型所不存在的。

在网络上找了一些资料,重点说说collections 模块中的 deque 、Counter、defaultdict 类


1、class deque
类似于python 内置的 list ,不过它是一个双向的list。可以在任意一头进行操作

help(collections.deque)

class deque(__builtin__.object)
  deque([iterable[, maxlen]]) --> deque object

deque 的参数应该时一个iterable.

Example:

In [1]: import collections
In [2]: d = collections.deque(‘abcdef‘)
In [3]: print d
deque([‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘])

In [4]: d.append(‘mm‘)         #追加元素
In [5]: print d
deque([‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘mm‘])

In [6]: d.appendleft(‘gg‘)   #从左追加元素
In [7]: print d
deque([‘gg‘, ‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘mm‘])

In [8]: d.pop()    # pop 一个元素
Out[8]: ‘mm‘
In [9]: print d
deque([‘gg‘, ‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘])

In [10]: d.popleft() #从左pop 一个元素
Out[10]: ‘gg‘
In [11]: print d
deque([‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘])

In [12]: d.extend(‘xyz‘)   #扩展
In [13]: print d
deque([‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘x‘, ‘y‘, ‘z‘])

In [14]: d.extendleft(‘123‘)  #左扩展
In [15]: print d
deque([‘3‘, ‘2‘, ‘1‘, ‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘x‘, ‘y‘, ‘z‘])


In [16]: d.reverse() #反转
In [17]: print d
deque([‘z‘, ‘y‘, ‘x‘, ‘f‘, ‘e‘, ‘d‘, ‘c‘, ‘b‘, ‘a‘, ‘1‘, ‘2‘, ‘3‘])


In [22]: d.extend(‘1111‘)
In [23]: d.count(‘1‘)      #统计一个元素的个数
Out[23]: 5
In [24]: print d
deque([‘z‘, ‘y‘, ‘x‘, ‘f‘, ‘e‘, ‘d‘, ‘c‘, ‘b‘, ‘a‘, ‘1‘, ‘2‘, ‘3‘, ‘1‘, ‘1‘, ‘1‘, ‘1‘])

In [27]: d.rotate(2)  #右旋转
In [28]: print d
deque([‘1‘, ‘1‘, ‘z‘, ‘y‘, ‘x‘, ‘f‘, ‘e‘, ‘d‘, ‘c‘, ‘b‘, ‘a‘, ‘1‘, ‘2‘, ‘3‘, ‘1‘, ‘1‘])

In [29]: d.rotate(-2) #左旋转
In [30]: print d
deque([‘z‘, ‘y‘, ‘x‘, ‘f‘, ‘e‘, ‘d‘, ‘c‘, ‘b‘, ‘a‘, ‘1‘, ‘2‘, ‘3‘, ‘1‘, ‘1‘, ‘1‘, ‘1‘])

In [31]: d.clear() #清空
In [32]: print d
deque([])


另外在deque 函数中发现一个maxlen参数。主要是限制这个双向list 的 大小

In [34]: d = collections.deque(xrange(10),5)
In [35]: print d
deque([5, 6, 7, 8, 9], maxlen=5)
In [36]:


本文出自 “学习笔记” 博客,请务必保留此出处http://unixman.blog.51cto.com/10163040/1651973

Python 中的collections 模块

标签:collections deque counter defaultdict

原文地址:http://unixman.blog.51cto.com/10163040/1651973

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!