技术知识&随记算法数据结构和通用算法数据结构链表链表链表 class TreeNode(object): val=None next=None def __init__(val,next=None) self.val=val self.next=next