剑指offer15
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了剑指offer15相关的知识,希望对你有一定的参考价值。
package jianzhiOffer; /** * 输入一个链表,反转链表后,输出链表的所有元素。 * @author user * 思路:使链表的所有节点都指向上一个结点 */ public class ch15 { public ListNode ReverseList(ListNode head) { ListNode pre = null; ListNode next = null; while(head != null) { next = head.next; head.next = pre; pre = head; head = next; } return pre; } }以上是关于剑指offer15的主要内容,如果未能解决你的问题,请参考以下文章