Python教程

Python教程:包含了所有代写案例以及部分答案

  • #coding:utf-8 class Node(object): def __init__(self, data): self.data = data self.next = None class NodeList(object): def __init__(self, node): self.head = node self.head.next = None self.end = self.head def add_node(self, node): self.end.next = node … 继续阅读“python实现单链表”

    :