摘要: python的四种队列 先进先出队列Queue 后进先出队列LifoQueue 优先级队列PriorityQueue 双边队列deque 前三种的导入方式是from queue import Queue, LifoQueue, PriorityQueue 三者的方式也是极其相似: 队列元素添加obj 阅读全文
posted @ 2020-04-02 11:17 xsha_h 阅读(356) 评论(0) 推荐(0) 编辑