2019年4月23日
摘要: #python实现数据结构单链表 # -*- coding: utf-8 -*- class Node(object): """节点""" def __init__(self, elem): self.elem = elem self.next = None # 节点一开始初始化的时候并不知道下一个元素的地址,所以先设置为空 c... 阅读全文
posted @ 2019-04-23 08:09 QzkRainPig 阅读(231) 评论(0) 推荐(0) 编辑