Python学习之路15——列表实现栈和队列

栈是一种后进先出(LIFO)的数据结构。你可以通过push操作来向栈中添加一个对象,也可以通过pop操作来返回并删除栈顶对象。

以下是列表模拟栈的代码:

<span style="font-size:14px;">#!/usr/bin/env python

'stack.py create a stack'

stack = []

def pushit():
	stack.append(raw_input('Enter New string: ').strip())

def popit():
	if len (stack) == 0:
		print 'Cannot pop from an empty stack!'
	else:
		print 'Remove [', repr(stack.pop()), ']'

def viewstack():
	print stack

CMDs = {'u': pushit, 'o':popit, 'v': viewstack}

def showmenu():
	pr = '''
		push<span style="white-space:pre">		</span>#u represent push
		pop<span style="white-space:pre">		</span>#o represent pop
		view<span style="white-space:pre">		</span>#v represent view
		quit<span style="white-space:pre">		</span>#q represent quit

		Enter choice: '''

	while True:
		while True:
			try:
				choice = raw_input(pr).strip()[0].lower()
			except (EOFError, KeyboardInterrupt, IndexError):
				choice = 'q'

			print '\nYou picked: [%s]' % choice
			if choice not in 'uovq':
				print 'Invalid option, try again'
			else:
				break

		if choice == 'q':
			break;

		CMDs[choice]()

if __name__ == '__main__':
	showmenu()
</span>

下面是运行结果:

<span style="font-size:14px;">[email protected]:~/python> python stack.py 

                push
                pop
                view
                quit

                Enter choice: v

You picked: [v]
[]

                push
                pop
                view
                quit

                Enter choice: p

You picked: [p]
Invalid option, try again

                push
                pop
                view
                quit

                Enter choice: u

You picked: [u]
Enter New string: one

                push
                pop
                view
                quit

                Enter choice: u

You picked: [u]
Enter New string: two

                push
                pop
                view
                quit

                Enter choice: u

You picked: [u]
Enter New string: three

                push
                pop
                view
                quit

                Enter choice: v

You picked: [v]
['one', 'two', 'three']

                push
                pop
                view
                quit

                Enter choice: o

You picked: [o]
Remove [ 'three' ]

                push
                pop
                view
                quit

                Enter choice: v

You picked: [v]
['one', 'two']

                push
                pop
                view
                quit

                Enter choice: p

You picked: [p]
Invalid option, try again

                push
                pop
                view
                quit

                Enter choice: o

You picked: [o]
Remove [ 'two' ]

                push
                pop
                view
                quit

                Enter choice: v

You picked: [v]
['one']

                push
                pop
                view
                quit

                Enter choice:
</span>

队列

队列是一种先进先出(FIFO)的数据结构

以下是列表模拟队列的代码:

<span style="font-size:14px;">#!/usr/bin/env python

queue = []

def enQ():
        queue.append(raw_input('Enter New string: ').strip())

def deQ():
        if len(queue) == 0:
                print 'Cannot pop from an empty queue!'
        else:
                print 'Removed [', repr(queue.pop(0)), ']'

def viewQ():
        print queue             #calls str() internaily

CMDS = {'e': enQ, 'd': deQ, 'v': viewQ}

def showmenu():
        pr = '''</span>
            <span style="font-size:14px;">    (E)nqueue
                (D)equeue
                (V)iew
                (Q)uit

        Enter choice: '''

        while True:
                while True:
                        try:
                                choice = raw_input(pr).strip()[0].lower()
                        except (EOFError, KeyboardInterrupt, IndexError):
                                choice = 'q'

                        print '\nYou picked: [%s]' % choice
                        if choice not in 'devq':
                                print 'Invalid option, try again'
                        else:
                                break

                if choice == 'q':
                        break
                CMDS[choice]()

if __name__ == '__main__':
                showmenu()
</span>

下面是运行结果:

<span style="font-size:14px;">[email protected]:~/python> python queue.py 

                (E)nqueue
                (D)equeue
                (V)iew
                (Q)uit

        Enter choice: e

You picked: [e]
Enter New string: one

                (E)nqueue
                (D)equeue
                (V)iew
                (Q)uit

        Enter choice: e

You picked: [e]
Enter New string: two

                (E)nqueue
                (D)equeue
                (V)iew
                (Q)uit

        Enter choice: e

You picked: [e]
Enter New string: three

                (E)nqueue
                (D)equeue
                (V)iew
                (Q)uit

        Enter choice: v

You picked: [v]
['one', 'two', 'three']

                (E)nqueue
                (D)equeue
                (V)iew
                (Q)uit

        Enter choice: d

You picked: [d]
Removed [ 'one' ]

                (E)nqueue
                (D)equeue
                (V)iew
                (Q)uit

        Enter choice: v

You picked: [v]
['two', 'three']

                (E)nqueue
                (D)equeue
                (V)iew
                (Q)uit

        Enter choice: d

You picked: [d]
Removed [ 'two' ]

                (E)nqueue
                (D)equeue
                (V)iew
                (Q)uit

        Enter choice: v

You picked: [v]
['three']

                (E)nqueue
                (D)equeue
                (V)iew
                (Q)uit

        Enter choice:
</span>
时间: 2024-10-25 21:15:16

Python学习之路15——列表实现栈和队列的相关文章

Python学习之路2 - 列表和元组

列表 概念:Python内置的一种数据类型是列表:list.list是一种有序的集合,可以随时添加和删除其中的元素. 列表的使用 names = ['zhangsan','lisi','wangwu','zhaoliu'] //定义一个了列表 print(names) //输出列表的所有内容 print(names[0]) //输出列表的第0个内容//用索引来访问list中每一个位置的元素,记得索引是从0开始的. 输出结果: 如果要取最后一个元素,除了计算索引位置外,还可以用-1做索引,直接获取

Python学习之路15

一.上节回顾 1.inline-block 默认会有3px宽度 2.改造标签 网页小三角造成视觉效果 <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>小三角</title> <style> .icon{ display: inline-block; border-top: 30px solid

Python学习之路:列表(List)的append()、extend()与insert()方法

相同点 这三种方法的作用都是为列表(List)添加值 它们的语法为: list.append(obj)list.extend(seq)list.insert(index,obj) #此处index为对象obj需要插入的索引位置 不同点 为方便阐述,创建如下列表: a=[1] #列表a b=[22,333] #注意此处未必要是列表,它可以是任意类型的单个值或序列 分别执行三种方法,并观察其结果: a.append(b) print(a) 结果为: [1, [22, 333]] a.extend(b

Python 学习之路(二)

Python 学习之路(二) 以下所用的是Python 3.6 一.条件语句 简单判断 1 if 判断条件: 2 执行语句-- 3 else: 4 执行语句-- 复杂判断 1 if 判断条件1: 2 执行语句1-- 3 elif 判断条件2: 4 执行语句2-- 5 elif 判断条件3: 6 执行语句3-- 7 else: 8 执行语句4-- 二.循环语句 2.1 while语句 和其他语言一样,不同的是多了else语句.在 python 中,while - else 在循环条件为 false

Python学习之路-Day1-Python基础

Python学习之路第一天 学习内容: 1.Python简介 2.安装 3.第一个Python程序 4.变量 5.字符编码 6.用户输入 7.表达式if..else语句 8.表达式for语句 9.break和continue 10.while循环 11.字符串格式化 1.python简介 python的创始人为吉多·范罗苏姆(Guido van Rossum).1989年的圣诞节期间,吉多·范罗苏姆为了在阿姆斯特丹打发时间,决心开发一个新的脚本解释程序,作为ABC语言的一种继承. 最新的TIOB

Python学习之路

Python学习之路 目录 Python学习之路[第一篇]:流程控制,用户交互,语法要求,变量,字符,注释,模块导入的使用 Python学习之路[第二篇]:文件,字符串,列表,元组,字典,集合的使用 更新中...

Python学习之路-装饰器&生成器&正则表达式

装饰器 通俗的讲,装饰器就是在不改变源代码基础上,给源代码增加新功能. 不改变函数的源代码.调用方式.返回值等,给函数增加新功能. 经典案例:登录装饰器, def login_decorator(func):     def inner():         if USER_TEMP["status"] == False:             print("\033[31;1m用户未登录,请先登录\033[0m")             login_atm()

Python学习之路——强力推荐的Python学习资料

资料一:程序媛想事儿(Alexia)总结 Python是一种面向对象.直译式计算机程序设计语言.它的语法简捷和清晰,尽量使用无异义的英语单词,与其它大多数程序设计语言使用大括号不一样,它使用縮进来定义语句块.与Scheme.Ruby.Perl.Tcl等动态语言一样,Python具备垃圾回收功能,能够自动管理内存使用.它经常被当作脚本语言用于处理系统管理任务和网络程序编写,然而它也非常适合完成各种高级任务. Python上手虽然容易,但与其它任何语言一样要学好Python并非一日之功.我的Pyth

Python 学习之路(三)

Python 学习之路(三) 以下所用的是Python 3.6 一.集合部分 集合是一个无序的,不重复的数据集合,主要用来去重,以及关系测试:交集,差集,并集等 1.1 关系操作 1.1.1 列表去重 可以给列表去重,例如: 1 set_demo = [1,2,3,4,5,3,2,1] # 列表 2 set_demo = set(set_demo) # 转换成集合,来去重 3 print(set_demo) 1.1.2 取交集 intersection()方法 可以获得两个集合的交集部分,例如: