数据结构和算法_python
up_stairs
这个作者很懒,什么都没留下…
展开
-
栈和队列_迷宫问题_栈和回朔法
#迷宫问题---栈和队列 #继承ValueError class StackUnderflow(ValueError): pass #定义一个栈 class SStack(): def __init__(self): self._elems = [] def is_empty(self): return self._elems == []原创 2017-01-02 21:29:25 · 332 阅读 · 0 评论 -
栈和队列_迷宫问题_队列
#队列 class QueueUnderflow(ValueError): pass class SQueue(): def __init__(self,init_len=8): self._len = init_len self._elems = [0]*init_len self._head = 0 self._原创 2017-01-02 23:59:43 · 487 阅读 · 0 评论 -
栈和队列_迷宫问题_递归
#迷宫问题---栈和队列 #定义maze line_0 = [1,1,1,1,1,1,1] line_1 = [1,1,0,1,1,1,1] line_2 = [1,1,0,1,1,1,1] line_3 = [1,1,0,0,0,1,1] line_4 = [1,1,0,1,0,0,1] line_5 = [1,1,0,1,1,1,1] line_6 = [1,1,1,1,1,1,1] maz原创 2017-01-02 00:56:05 · 455 阅读 · 0 评论