单链表的反转
Posted 32ddd
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单链表的反转相关的知识,希望对你有一定的参考价值。
单链表的反转,每次循环需要四步骤。
public ListNode reverse(ListNode head) { if(head == null || head.next == null) { return head; } ListNode pPre = head; ListNode pCurr = head.next; ListNode pNext = null; head.next = null; while(pCurr != null) { pNext = pCurr.next; pCurr.next = pPre; pPre = pCurr; pCurr = pNext; } return pPre; }
以上是关于单链表的反转的主要内容,如果未能解决你的问题,请参考以下文章