摘要: https://www.cnblogs.com/lliuye/p/9143676.html 阅读全文
posted @ 2019-10-22 14:50 xushukui 阅读(113) 评论(0) 推荐(0) 编辑
摘要: ``` python # coding=utf-8 class Node: def __init__(self, data=None, next=None): self.data = data self.next = next def Reserver(link): pre = link cur = link.next pre.... 阅读全文
posted @ 2019-10-22 14:46 xushukui 阅读(344) 评论(0) 推荐(0) 编辑