日韩av黄I国产麻豆传媒I国产91av视频在线观看I日韩一区二区三区在线看I美女国产在线I麻豆视频国产在线观看I成人黄色短片

歡迎訪問 生活随笔!

生活随笔

當(dāng)前位置: 首頁 >

lintcode :Partition List 链表划分

發(fā)布時(shí)間:2025/3/19 46 豆豆
生活随笔 收集整理的這篇文章主要介紹了 lintcode :Partition List 链表划分 小編覺得挺不錯(cuò)的,現(xiàn)在分享給大家,幫大家做個(gè)參考.

題目:

鏈表劃分

給定一個(gè)單鏈表和數(shù)值x,劃分鏈表使得所有小于x的節(jié)點(diǎn)排在大于等于x的節(jié)點(diǎn)之前。

你應(yīng)該保留兩部分內(nèi)鏈表節(jié)點(diǎn)原有的相對(duì)順序。

樣例

給定鏈表?1->4->3->2->5->2->null,并且 x=3

返回?1->2->2->4->3->5->null

解題:

上面返回的結(jié)果好多不對(duì)的應(yīng)該是:?1->2->2->3->4->5->null

想了好久不知道怎么搞,九章看到的程序,竟然搞兩個(gè)鏈表鏈接起來。。。

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

總耗時(shí):?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

總耗時(shí):?517?ms

和Java的有點(diǎn)小區(qū)別但是沒有影響的。

總結(jié)

以上是生活随笔為你收集整理的lintcode :Partition List 链表划分的全部?jī)?nèi)容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網(wǎng)站內(nèi)容還不錯(cuò),歡迎將生活随笔推薦給好友。