摘要:
创建 class Node: def __init__(self, item): self.item = item self.next = None def create_link_list(lis): head = Node(lis[0]) for element in lis[1:]: node 阅读全文
posted @ 2022-03-27 19:50
10132714
阅读(10)
评论(0)
推荐(0)
摘要:
# 别人整理的地址 https://www.cnblogs.com/flmei/p/10768617.html # 1. 数据结构和算法 ``` 1. 数据结构:我们如何把现实中大量而复杂的问题以特定的数据类型和特定的存储结构保存到主存储器(内内存)中 2. 算法:对数据结构存储的数据进行操作(比如 阅读全文
posted @ 2022-03-27 17:56
10132714
阅读(82)
评论(0)
推荐(0)