要求使用list实现stack类:
共5个空
练习题要求补全横线处缺失的代码,实在是没有思路,求高人指点给答案,多谢!急!
Python程序填空练习题求解答!急!
- 写回答
- 好问题 0 提建议
- 追加酬金
- 关注问题
- 邀请回答
-
1条回答 默认 最新
- starlight_2007 2022-12-25 16:39关注
class Stack: def __init__(self): self.__elements = [] # Return true if the stack is empty def isEmpty(self): return True #(A) # Returns the element at the top of the stack # without removing it from the stack. def peek(self): if self.isEmpty(): return None else: return self.__elements #(B) # Stores an element into the top of the stack def push(self, value): self.__elements.append(value) #(C) # Removes the element at the top of the stack and returns it def pop(self): if self.isEmpty(): return None else: return self.__elements.pop(0) #(D) # Return the size of the stack def getSize(self): return len(self.__elements) #(E)
试试?
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报 编辑记录
悬赏问题
- ¥100 微信小程序跑脚本授权的问题
- ¥100 房产抖音小程序苹果搜不到安卓可以付费悬赏
- ¥15 STM32串口接收问题
- ¥15 腾讯IOA系统怎么在文件夹里修改办公网络的连接
- ¥15 filenotfounderror:文件是存在的,权限也给了,但还一直报错
- ¥15 MATLAB和mosek的求解问题
- ¥20 修改中兴光猫sn的时候提示失败
- ¥15 java大作业爬取网页
- ¥15 怎么获取欧易的btc永续合约和交割合约的5m级的历史数据用来回测套利策略?
- ¥15 有没有办法利用libusb读取usb设备数据