赞
踩
今天是2019年1月1日,祝大家新年快乐!为图个好彩头,今天准备AC十个编程题,先从熟悉的链表开始入手!!!
题目链接:https://leetcode.com/problems/reorder-list/
要求将链表重组,意思是将链表(链表长度为n)倒数第一的节点(第n个节点)插在正数第一的元素后面,不是一般性的说:将第i个节点(i>n/2)插入到第(n-i+1)个节点的后面。
更直接的说:先将链表二分为两个长度基本相等的链表(第一个链表长度要么等于第二个链表,要么比第二个链表大1),然后将第二个链表逆转(这个链表操作四不四很熟悉,送分题呀,参见206. Reverse Linked List),再将第二个链表的逐个节点插入到第一个链表的节点之间。就是这么简单直白,哈哈哈哈!!!
代码如下:
- class Solution {
- public void reorderList(ListNode head)
- {
- if(head==null)
- return;
- ListNode fast=head,slow=head;
- while(fast.next!=null &&fast.next.next!=null)
- {
- slow=slow.next;
- fast=fast.next.next;
- }
-
- ListNode head1=reverseList(slow.next);
- slow.next=null;
-
- ListNode p=head,q=head1;
-
- while(p.next!=null)
- {
- head1=head1.next;
- q.next=p.next;
- p.next=q;
- p=q.next;
- q=head1;
- }
- if(q!=null)
- p.next=q;
- }
-
- public ListNode reverseList(ListNode head) {
- if(head==null||head.next==null)
- return head;
- ListNode rear=null,p=head;
- ListNode front=head.next;
- while(front!=null)
- {
- p.next=rear;
- rear=p;
- p=front;
- front=front.next;
- }
- p.next=rear;
- return p;
- }
- }
效果杠杠的:
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。