翻转链表
Posted 雪浪snowWave
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了翻转链表相关的知识,希望对你有一定的参考价值。
题目:输入一个链表,反转链表后,输出链表的所有元素。
思路:逐个扫描,翻转指针。。。个人认为翻转链表的操作是链表题目中最难最考验指针的操作。。。。
public ListNode ReverseList(ListNode head) { ListNode now=head,pre=null,behind=null; while(now!=null){ ListNode pNext=now.next;
//保存尾节点,返回时就是翻转后的头结点 if(pNext==null) behind=now; now.next=pre; pre=now; now=pNext; } return behind; }
以上是关于翻转链表的主要内容,如果未能解决你的问题,请参考以下文章