文章目录

LeetCode地址:https://leetcode.com/problems/reorder-list/

Problem:
Given a singly linked list L: L0→L1→…→Ln-1→Ln,
reorder it to: L0→Ln→L1→Ln-1→L2→Ln-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}.

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/**
* Definition for singly-linked list.
* class ListNode {
* int val;
* ListNode next;
* ListNode(int x) {
* val = x;
* next = null;
* }
* }
*/

public class Solution {
public void reorderList(ListNode head) {
if(head==null || head.next==null)
return ;

Stack<ListNode> stack=new Stack<ListNode>();

ListNode temp=head;
while(temp!=null)
{
stack.push(temp);
temp=temp.next;
}

int length=stack.size();
temp=head;
for(int i=0;i<Math.floor((length+1)/2)-1;i++)
{
ListNode node=stack.pop();
node.next=temp.next;
temp.next=node;

temp=node.next;
}
stack.pop().next=null;
}
}

本作品采用[知识共享署名-非商业性使用-相同方式共享 2.5]中国大陆许可协议进行许可,我的博客欢迎复制共享,但在同时,希望保留我的署名权kubiCode,并且,不得用于商业用途。如您有任何疑问或者授权方面的协商,请给我留言

文章目录