剑指offer-反转链表15
阅读原文时间:2023年07月17日阅读:2

输入一个链表,反转链表后,输出新链表的表头。

class Solution:
# 返回ListNode
def ReverseList(self, pHead):
# write code here
nextNode=None
p=pHead
while pHead is not None:
pHead=pHead.next
p.next=nextNode
nextNode=p
p=pHead
return nextNode

手机扫一扫

移动阅读更方便

阿里云服务器
腾讯云服务器
七牛云服务器

你可能感兴趣的文章