Hu0116_ 2021-11-05 10:13 采纳率: 70%
浏览 36
已结题

python如何创建一个栈

说明:根据以下要求创建python程序

一个strack
1·该程序将提示您输入5名员工
2 对于每个员工,您将生成一组随机的员工编号
3 如果公司决定解雇员工,你要拿出一份计划,它将遵循“后进先出”原则
4 您必须将堆栈用作代码的一部分

img

  • 写回答

1条回答 默认 最新

  • 辉煌仪奇 2021-11-05 14:36
    关注
    import random
    
    
    class Stack:
        def __init__(self):
            self.items = []
    
        def push(self, item):
            self.items.append(item)
    
        def pop(self):
            return self.items.pop()
    
        def clear(self):
            del self.items[:]
    
        def isempty(self):
            return self.size() == 0
    
        def size(self):
            return len(self.items)
    
        def top(self):
            return self.items[self.size()-1]
    
    
    if __name__ == '__main__':
        stack=Stack()
        print("You will enter 5 employees")
        for i in range(1,6):
            print(f"Enter the {i} Employee")
            name=input()
            number=random.randint(10000,99999)
            print(f"The employee number of the above employee is {number}")
            stack.push([name,number])
        print("If in case there will be a laid off")
        while not stack.isempty():
            name,number=stack.pop()
            print(f"{name} Lativia with employee number of {number} will be the first to go")
    
    # John
    # Jessica
    # Jomari
    # Sanaya
    #Lativia
    

    img

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

报告相同问题?

问题事件

  • 系统已结题 11月17日
  • 已采纳回答 11月9日
  • 创建了问题 11月5日

悬赏问题

  • ¥15 SDO如何更改STM32的波特率
  • ¥15 求红米或者任意工作安卓机ro,ot之后劫c ,h ,i摄像头, 实现无人直播瞒过抖音直播助手的教程, 或者远程 协助也可以。
  • ¥15 elasticsearch
  • ¥15 uniapp的uni-datetime-picker组件在ios端不适配
  • ¥15 前端 uniapp App端在离线状态如何使用modbus 连接手机蓝牙进行读写操控机器?
  • ¥15 SQL语句根据字段自动生成行
  • ¥500 “掌声响起来”软件(不确定性人工智能)
  • ¥500 我要找大模型一体机产品手册和应用案例
  • ¥20 关于游戏c++语言代码问题
  • ¥15 如何制作永久二维码,最好是微信也可以扫开的。(相关搜索:管理系统)