剑指offer-24.反转链表
Posted wanrongshu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer-24.反转链表相关的知识,希望对你有一定的参考价值。
1.递归法
# -*- 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
newhead=self.ReverseList(pHead.next)
pHead.next.next=pHead
pHead.next=None
return newhead
2.指针法:定义三个指针,分别指向当前遍历到的节点,它的前一个节点以及后一个节点。
# -*- 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 cur=pHead pre=None #pre不要忘记写在最前面,因为第一个节点的next要置空 while cur: next=cur.next #注意这四行代码的对角线是相同的,按照这个规则写 cur.next=pre #比较简单,记住第一步是把当前节点的下一个节点保存好 pre=cur #next必须是一个临时(局部)变量,先要判断cur是为空, cur=next #防止链表断开 return pre
以上是关于剑指offer-24.反转链表的主要内容,如果未能解决你的问题,请参考以下文章
剑指 Offer 24. 反转链表 c++/java详细题解