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

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

個人記錄-LeetCode 86. Partition List

2019-11-11 00:37:38
字體:
來源:轉載
供稿:網友

問題: 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; }}
發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 肥西县| 磴口县| 启东市| 衡东县| 卫辉市| 邹平县| 兴义市| 南开区| 尖扎县| 平阴县| 大方县| 宜丰县| 徐水县| 五华县| 万荣县| 黑山县| 晋江市| 应城市| 始兴县| 孝昌县| 上虞市| 吉林市| 定结县| 雷波县| 芜湖市| 旬邑县| 信丰县| 墨玉县| 安西县| 得荣县| 昌江| 湘潭市| 玛曲县| 安丘市| 平舆县| 襄城县| 井陉县| 清新县| 黄浦区| 米易县| 喀喇沁旗|