leetcode-206

Posted 世人谓我恋长安,其实只恋长安某

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了leetcode-206相关的知识,希望对你有一定的参考价值。

Reverse Linked List

Reverse a singly linked list.

此题不难,附上java代码:

/**
 * Definition for singly-linked list.
 * public class ListNode {
 *     int val;
 *     ListNode next;
 *     ListNode(int x) { val = x; }
 * }
 */
public class Solution {
    public ListNode reverseList(ListNode head) {
        if(head==null||head.next==null) return head;
        ListNode pre=head;
        ListNode p=head.next;
        pre.next=null;
        ListNode nxt;
        while(p!=null){
            nxt=p.next;
            p.next=pre;
            pre=p;
            p=nxt;
        }
        return pre;
    }
}

  

 

以上是关于leetcode-206的主要内容,如果未能解决你的问题,请参考以下文章

leetcode-206

LeetCode206

LeetCode #206 链表反转

LeetCode 206. Reverse Linked List(迭代和递归两种实现)

LeetCode 206. 反转链表

微软面试题: LeetCode 206. 反转链表 出现次数:3