摘要: 解答: class ListNode: def __init__(self,x): self.val=x self.next=None class Solution: #返回ListNode def ReverseList(self , pHead): #指向头节点,头节点是有值的 head=Lis 阅读全文
posted @ 2022-10-27 17:53 Trouvaille_fighting 阅读(28) 评论(0) 推荐(0)