摘要: 1 # -*- coding: utf-8 -*- 2 # @author: Tele 3 # @Time : 2019/04/23 下午 6:54 4 # 单向循环列表 5 # 单向循环列表与单向列表的不同之处在于最后一个元素的next为头节点 6 class SingleCycleNode: 7 def __init__(self, data, next... 阅读全文
posted @ 2019-04-24 13:32 tele 阅读(697) 评论(0) 推荐(0) 编辑