Java for LeetCode 143 Reorder List

來源:互聯網
上載者:User

標籤:

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

解題思路一:

每次將Ln換到前面,得到L0→LnL1→L2→L3→,然後對L1使用相同操作,JAVA實現如下:

public void reorderList(ListNode head) {ListNode headCopy = head;while (headCopy != null && headCopy.next != null&& headCopy.next.next != null) {ListNode temp = headCopy;while (temp.next.next != null)temp = temp.next;temp.next.next = headCopy.next;headCopy.next = temp.next;temp.next = null;temp = headCopy.next.next;headCopy=headCopy.next.next;}}

 結果TLE

解題思路二:

空間換時間,將所有的node存到一個list中,然後每次操作list頭尾兩個node即可,JAVA實現如下:

    public void reorderList(ListNode head) {LinkedList<ListNode> list = new LinkedList<ListNode>();ListNode headCopy = head,end = head;while (headCopy != null) {list.add(headCopy);headCopy = headCopy.next;}while(list.size()>2){headCopy=list.poll();end=list.get(list.size()-1);list.remove(list.size()-1);headCopy.next=end;end.next=list.peek();list.get(list.size()-1).next=null;}    }

 

Java for LeetCode 143 Reorder List

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.