9wo. 2022-12-25 00:23 采纳率: 100%
浏览 35
已结题

Python程序填空练习题求解答!急!

要求使用list实现stack类:
共5个空
练习题要求补全横线处缺失的代码,实在是没有思路,求高人指点给答案,多谢!急!

img

  • 写回答

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)
    

    试试?

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论 编辑记录

报告相同问题?

问题事件

  • 系统已结题 1月2日
  • 已采纳回答 12月25日
  • 创建了问题 12月25日

悬赏问题

  • ¥100 微信小程序跑脚本授权的问题
  • ¥100 房产抖音小程序苹果搜不到安卓可以付费悬赏
  • ¥15 STM32串口接收问题
  • ¥15 腾讯IOA系统怎么在文件夹里修改办公网络的连接
  • ¥15 filenotfounderror:文件是存在的,权限也给了,但还一直报错
  • ¥15 MATLAB和mosek的求解问题
  • ¥20 修改中兴光猫sn的时候提示失败
  • ¥15 java大作业爬取网页
  • ¥15 怎么获取欧易的btc永续合约和交割合约的5m级的历史数据用来回测套利策略?
  • ¥15 有没有办法利用libusb读取usb设备数据