国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 學院 > 開發設計 > 正文

個人記錄-LeetCode 86. Partition List

2019-11-10 23:37:53
字體:
來源:轉載
供稿:網友

問題: Given a linked list and a value x, partition it such that all nodes less than x come before nodes greater than or equal to x.

You should PReserve the original relative order of the nodes in each of the two partitions.

For example, Given 1->4->3->2->5->2 and x = 3, return 1->2->2->4->3->5.

這個問題的思路是:輪尋整個鏈表,將大于等于x的node移到另一個鏈表中。 然后,合并兩個鏈表即可。

代碼示例:

/** * Definition for singly-linked list. * public class ListNode { * int val; * ListNode next; * ListNode(int x) { val = x; } * } */public class Solution { public ListNode partition(ListNode head, int x) { //tmp用于輪尋原始鏈表 ListNode tmp = head; //prev用于記錄tmp之前的節點 ListNode prev = null; //otherHead用于記錄另一個鏈表的頭節點 ListNode otherHead = null; //other用于輪尋另一個鏈表 ListNode other = null; while (tmp != null) { //小于x的節點直接跳過 while (tmp != null && tmp.val < x) { prev = tmp; tmp = tmp.next; } //否則將tmp從原始鏈表中移除 if (tmp != null) { if (prev != null) { prev.next = tmp.next; } else { head = tmp.next; } } //將tmp加入到另一個鏈表中 if (other == null) { otherHead = tmp; other = tmp; } else { other.next = tmp; other = other.next; } //繼續移動tmp if (tmp != null) { tmp = tmp.next; } } //合并兩個鏈表 if (prev != null) { prev.next = otherHead; } else { //這里是原始鏈表中,所有的值都大于等于x的情況 head = otherHead; } return head; }}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 咸宁市| 大邑县| 临清市| 石城县| 扎鲁特旗| 武定县| 磴口县| 沽源县| 辽源市| 荃湾区| 海盐县| 三河市| 疏勒县| 平定县| 玉山县| 安徽省| 望奎县| 信丰县| 汉沽区| 廊坊市| 锡林郭勒盟| 绩溪县| 尼玛县| 喀喇| 秦皇岛市| 沅江市| 吉木乃县| 秦皇岛市| 卢湾区| 沅陵县| 巩义市| 海南省| 凤阳县| 娄底市| 延边| 临潭县| 福安市| 靖宇县| 东兰县| 济宁市| 舟山市|