牛客网 反转列表

题目:

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

解法:

参考反转列表

# -*- coding:utf-8 -*-
# class ListNode:
#     def __init__(self, x):
#         self.val = x
#         self.next = None
class Solution:
    # 返回ListNode
    def ReverseList(self, pHead):
        # write code here
        if not pHead or not pHead.next:
            return pHead
        last=None
        
        while pHead:
            tmp=pHead.next
            pHead.next=last
            last=pHead
            pHead=tmp
        return last

猜你喜欢

转载自blog.csdn.net/sxllllwd/article/details/81462992