反转链表(important!)

Posted bernieloveslife

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了反转链表(important!)相关的知识,希望对你有一定的参考价值。

题目描述
输入一个链表,反转链表后,输出新链表的表头。

解题思路
直接在原链表上操作,不需要新的链表

python solution:

# -*- coding:utf-8 -*-
class ListNode:
    def __init__(self, x):
        self.val = x
        self.next = None

class Solution:
    # 返回ListNode
    def ReverseList(self, pHead):
        pre,next = None,None
        while pHead is not None:
            next = pHead.next
            pHead.next = pre
            pre = pHead
            pHead = next
        return pre

以上是关于反转链表(important!)的主要内容,如果未能解决你的问题,请参考以下文章

三行代码解反转链表

如何链表反转

反转链表

c语言,链表的反转,请写出代码,并讲解下,谢了!!!!!

代码的鲁棒性:反转链表

Offer[24] 反转链表