当前位置:考试网  > 试卷库  > 计算机类  > 等级考试  > 计算机二级  > Python语言程序设计  > 在Python中如何实现栈和队列?请举例说明。
试题预览

在Python中如何实现栈和队列?请举例说明。

查看答案
收藏
纠错
正确答案:

class Stack(object):

def __init__(self):

self.stack=[]

def isEmpty(self):

return self.stack==[]

def push(self,item):

self.stack.append(item)

def pop(self):

if self.isEmpty():

raise IndexError,'pop from empty stack'

return self.stack.pop()

def peek(self):

return self.stack[-1]

def size(self):

return len(self.stack)

class Queue:

def __init__(self, head=None):

self.storage = [head]

def enqueue(self, new_element):

self.storage.append(new_element)

def peek(self):

return self.storage[0]

def dequeue(self):

return self.storage.pop(0)

答案解析:

暂无解析

你可能感兴趣的试题

Python语言有哪些运算符?请列表说明它们各自的运算优先级。

简述元组与列表的异同。并简述它们各自的用途。

下面不属于软件设计原则的是

在tkinter模块中事件绑定方式有哪几种?并简述它们各自的用途。

执行以下程序,输入”93python22”,输出结果是:

w=input(‘请输入数字和字母构成的字符串:’)

forxinw:

if'0'<=x<='9':

continue

else:

w.replace(x,'')

热门试题 更多>
试题分类: 组织行为学
练习次数:0次
试题分类: 组织行为学
练习次数:1次
试题分类: 组织行为学
练习次数:0次
试题分类: 政治经济学(财)
练习次数:0次
试题分类: 文化教育职业技能鉴定
练习次数:0次
试题分类: 组织行为学
练习次数:0次
试题分类: 文化教育职业技能鉴定
练习次数:1次
试题分类: 冶金工业技能鉴定
练习次数:3次
试题分类: 冶金工业技能鉴定
练习次数:0次
扫一扫,手机做题