单链表的反转
Posted 寒潭渡鹤影
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了单链表的反转相关的知识,希望对你有一定的参考价值。
单链表的反转
public ListNode ReverseList(ListNode head) { if(head == null)return null; ListNode pre = null; ListNode next = null; while(head != null){ next = head.next; head.next = pre; pre = head; head = next; } return pre; }
以上是关于单链表的反转的主要内容,如果未能解决你的问题,请参考以下文章