给定一个单链表 L:L0→L1→…→Ln-1→Ln ,
将其重新排列后变为: L0→Ln→L1→Ln-1→L2→Ln-2→…
你不能只是单纯的改变节点内部的值,而是需要实际的进行节点交换。
示例 1:
给定链表 1->2->3->4, 重新排列为 1->4->2->3.
示例 2:
给定链表 1->2->3->4->5, 重新排列为 1->5->2->4->3.
解法:栈
/**
* Definition for singly-linked list.
* public class ListNode {
* int val;
* ListNode next;
* ListNode() {}
* ListNode(int val) { this.val = val; }
* ListNode(int val, ListNode next) { this.val = val; this.next = next; }
* }
*/
class Solution {
public void reorderList(ListNode head) {
Stack<ListNode> stack=new Stack<>();
ListNode cur=head;
while(cur!=null){
stack.push(cur);
cur=cur.next;
}
int length=stack.size();
cur=head;
for(int i=0;i<length/2;i++){
ListNode tmp=stack.pop();
tmp.next=cur.next;
cur.next=tmp;
cur=cur.next.next;
}
cur.next=null;
}
}
该博客介绍了一种将单链表重新排列的方法,例如将1->2->3->4变为1->4->2->3或1->5->2->4->3。解决方案利用了栈的数据结构,将链表前半部分元素压栈,然后依次弹出并与链表后半部分元素交替连接,最后切断多余的连接,实现了链表的重新排列。
587

被折叠的 条评论
为什么被折叠?



