Fork me on GitHub
摘要: 1 ''' 2 定义一个顺序表 3 max:顺序表的默认长度为10 4 num:顺序表中的元素个数 5 ''' 6 # 定义一个顺序表 7 class sequence: 8 def __init__(self, max=10): 9 self.max = max 10 self.data = [N 阅读全文
posted @ 2022-02-13 17:34 wangkx 阅读(388) 评论(0) 推荐(0) 编辑