lintcode :Partition List 链表划分
生活随笔
收集整理的這篇文章主要介紹了
lintcode :Partition List 链表划分
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
題目:
鏈表劃分
給定一個單鏈表和數值x,劃分鏈表使得所有小于x的節點排在大于等于x的節點之前。
你應該保留兩部分內鏈表節點原有的相對順序。
樣例給定鏈表?1->4->3->2->5->2->null,并且 x=3
返回?1->2->2->4->3->5->null
解題:
上面返回的結果好多不對的應該是:?1->2->2->3->4->5->null
想了好久不知道怎么搞,九章看到的程序,竟然搞兩個鏈表鏈接起來。。。
Java程序:
/*** Definition for ListNode.* public class ListNode {* int val;* ListNode next;* ListNode(int val) {* this.val = val;* this.next = null;* }* }*/ public class Solution {/*** @param head: The first node of linked list.* @param x: an integer* @return: a ListNode */public ListNode partition(ListNode head, int x) {// write your code hereif(head == null) return null;ListNode leftDummy = new ListNode(0);ListNode rightDummy = new ListNode(0);ListNode left = leftDummy, right = rightDummy;while (head != null) {if (head.val < x) {left.next = head;left = head;} else {right.next = head;right = head;}head = head.next;}right.next = null;left.next = rightDummy.next;return leftDummy.next;}} View Code總耗時:?1573?ms
Python程序:
""" Definition of ListNode class ListNode(object):def __init__(self, val, next=None):self.val = valself.next = next """ class Solution:"""@param head: The first node of linked list.@param x: an integer@return: a ListNode """def partition(self, head, x):# write your code hereif head == None:return headlefthead = ListNode(0)righthead = ListNode(0)left = leftheadright = rightheadwhile head!=None:if head.val<x:left.next = head left = left.nextelse:right.next = headright = right.nexthead = head.nextright.next = Noneleft.next = righthead.nextreturn lefthead.next View Code總耗時:?517?ms
和Java的有點小區別但是沒有影響的。
總結
以上是生活随笔為你收集整理的lintcode :Partition List 链表划分的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 超级简单的mysql主从数据库配置攻略以
- 下一篇: git clone 出错SSL cert