
Python
文章平均质量分 75
bianjingzhanshi
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Queue
# -*-coding: utf-8 -*-# Author :writen by Qiusheng Li# Time: 2014/08/19# Email:liqiusheng_123@hotmail.com# enqueue Insert an item at the back of the queue# dequeue Remove an item from the front o原创 2014-08-19 20:15:30 · 497 阅读 · 0 评论 -
Stack---python
# -*-coding: utf-8 -*-# Author :writen by Qiusheng Li# Time: 2014/08/15# push Insert an item at the top of the stack# pop Remove an item from the top of the stack# peek Look up the element on the top#原创 2014-08-15 16:19:56 · 544 阅读 · 0 评论 -
Queue python
# -*-coding: utf-8 -*-# Author :writen by Qiusheng Li# Time: 2014/08/16# Email:liqiusheng_123@hotmail.com# enqueue Insert an item at the back of the queue# dequeue Remove an item from the front o原创 2014-08-16 21:38:36 · 859 阅读 · 0 评论 -
Queue1 -using two stacks impliment
# -*-coding: utf-8 -*-# Author :writen by Qiusheng Li# Time: 2014/08/18# Email:liqiusheng_123@hotmail.com# enqueue Insert an item at the back of the queue# dequeue Remove an item from the front o原创 2014-08-18 20:52:27 · 498 阅读 · 0 评论