码迷,mamicode.com
首页 > 其他好文 > 详细

Leetcode 206. Reverse Linked List

时间:2018-02-02 22:06:07      阅读:230      评论:0      收藏:0      [点我收藏+]

标签:log   ons   ble   tco   链表   val   body   next   ret   

技术分享图片

Similar Questions 

 

思路:链表反转。

解法一:迭代。

 1 /**
 2  * Definition for singly-linked list.
 3  * public class ListNode {
 4  *     int val;
 5  *     ListNode next;
 6  *     ListNode(int x) { val = x; }
 7  * }
 8  */
 9 class Solution {
10     public ListNode reverseList(ListNode head) {
11         ListNode p0, p1;
12         p0 = null;
13         p1 = head;
14         while(p1 != null) {//确保p1不为空
15             ListNode p2 = p1.next;
16             p1.next = p0;
17             p0 = p1;
18             p1 = p2;
19         }
20         return p0;
21     }
22 }

解法二:递归。

 1 /**
 2  * Definition for singly-linked list.
 3  * public class ListNode {
 4  *     int val;
 5  *     ListNode next;
 6  *     ListNode(int x) { val = x; }
 7  * }
 8  */
 9 class Solution {
10     public ListNode reverseList(ListNode head) {
11         if(head == null || head.next == null) return head;//这个判断很重要
12         ListNode p1 = head.next;
13         ListNode p0 = reverseList(p1);
14         p1.next = head;
15         head.next = null;
16         return p0;
17     }
18 }

Next challenges: Reverse Linked List II Binary Tree Upside Down

Leetcode 206. Reverse Linked List

标签:log   ons   ble   tco   链表   val   body   next   ret   

原文地址:https://www.cnblogs.com/Deribs4/p/8406523.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!