Reorder List leetcode java

题目

Given a singly linked list L: L0L1→…→Ln-1Ln,
reorder it to: L0LnL1Ln-1L2Ln-2→…

You must do this in-place without altering the nodes‘ values.

For example,
Given {1,2,3,4}, reorder it to {1,4,2,3}.

题解:

题目要重新按照 L0LnL1Ln-1L2Ln-2→…来排列,看例子1->2->3->4会变成1->4->2->3,拆开来看,是{1,2}和{4,3}的组合,而{4,3}是{3,4}的逆序。这样问题的解法就出来了。

第一步,将链表分为两部分。

第二步,将第二部分链表逆序。

第三步,将链表重新组合。

代码如下:

1     public void reorderList(ListNode head) {
 2         if(head==null||head.next==null)
 3             return;
 4         
 5         ListNode slow=head, fast=head;
 6         ListNode firsthalf = head;
 7         while(fast.next!=null&&fast.next.next!=null){
 8             slow = slow.next;
 9             fast = fast.next.next;
10         }
11         
12         ListNode secondhalf = slow.next;
13         slow.next = null;
14         secondhalf = reverseOrder(secondhalf);
15  
16         while (secondhalf != null) {
17             ListNode temp1 = firsthalf.next;
18             ListNode temp2 = secondhalf.next;
19  
20             firsthalf.next = secondhalf;
21             secondhalf.next = temp1;        
22  
23             firsthalf = temp1;
24             secondhalf = temp2;
25         }
26         
27     }
28     
29     public static ListNode reverseOrder(ListNode head) {
30  
31         if (head == null || head.next == null)
32             return head;
33  
34         ListNode pre = head;
35         ListNode curr = head.next;
36  
37         while (curr != null) {
38             ListNode temp = curr.next;
39             curr.next = pre;
40             pre = curr;
41             curr = temp;
42         }
43  
44         // set head node‘s next
45         head.next = null;
46  
47         return pre;
48     }

Reference://http://www.programcreek.com/2013/12/in-place-reorder-a-singly-linked-list-in-java/

Reorder List leetcode java

时间: 2025-01-09 09:06:53

Reorder List leetcode java的相关文章

Spiral Matrix leetcode java

题目: Given a matrix of m x n elements (m rows, n columns), return all elements of the matrix in spiral order. For example, Given the following matrix: [ [ 1, 2, 3 ], [ 4, 5, 6 ], [ 7, 8, 9 ] ] You should return [1,2,3,6,9,8,7,4,5]. 题解: 这道题是实现题. 考虑2个初始

Pascal's Triangle II Leetcode java

题目: Given an index k, return the kth row of the Pascal's triangle. For example, given k = 3, Return [1,3,3,1]. Note: Could you optimize your algorithm to use only O(k) extra space? 题解: 为了达到O(k)的空间复杂度要求,那么就要从右向左生成结果.相当于你提前把上一行的计算出来,当前行就可以用上一次计算出的结果计算了

Spiral Matrix II leetcode java

题目: Given an integer n, generate a square matrix filled with elements from 1 to n2 in spiral order. For example, Given n = 3, You should return the following matrix: [ [ 1, 2, 3 ], [ 8, 9, 4 ], [ 7, 6, 5 ] ] 题解:这道题跟Spiral Matrix想法也是类似的,就是依照矩阵从外圈到内圈建立

Pascal's Triangle leetcode java(杨辉三角)

题目: Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5, Return [ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1] ] 题解:既然讲到了Pascal‘s Triangle,即杨辉三角.那么就先去Wikipedia上面复习一下杨辉三角吧:”杨辉三角形,又称賈憲三角形.帕斯卡三角形.海亚姆三角形,是二项式係數在的

Triangle leetcode java

题目: Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below. For example, given the following triangle [ [2], [3,4], [6,5,7], [4,1,8,3] ] The minimum path sum from top to bottom is 1

[Leetcode][JAVA] Pascal's Triangle I, II

Pascal's Triangle: Given numRows, generate the first numRows of Pascal's triangle. For example, given numRows = 5,Return [ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1] ] 已知行数生成帕斯卡三角.实际上只要有第i层,那么就能生成第i+1层.每次新生成的层加入最终集合中即可. 1 public List<List<Integer&g

Permutations II leetcode java

题目: Given a collection of numbers that might contain duplicates, return all possible unique permutations. For example, [1,1,2] have the following unique permutations: [1,1,2], [1,2,1], and [2,1,1]. 题解: 这道题跟Permutaitons没啥大的区别,就是结果去重. 我之前也有写过去重的两个方法: 一

Word Ladder leetcode java

题目: Given two words (start and end), and a dictionary, find the length of shortest transformation sequence from start to end, such that: Only one letter can be changed at a time Each intermediate word must exist in the dictionary For example, Given:

Set Matrix Zeroes leetcode java

题目: Given a m x n matrix, if an element is 0, set its entire row and column to 0. Do it in place. click to show follow up. Follow up: Did you use extra space? A straight forward solution using O(mn) space is probably a bad idea. A simple improvement