反转链表(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!)的主要内容,如果未能解决你的问题,请参考以下文章