`
huntfor
  • 浏览: 201274 次
  • 性别: Icon_minigender_1
  • 来自: 杭州
社区版块
存档分类
最新评论

[leetcode]Partition List

 
阅读更多

新博文地址:Partition List

果然出去玩了一个星期回来状态极差。。。。

Partition List

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.

 码代码时,脑子都不会动了。。。纯粹靠一步步调试AC的。囧啊,找到待分割点,将分割点后所有的小节点,插入分割点当做后驱,并维护分割位置tail。返回时,有一个坑,比如2,1 (x  = 2),head = 2,将1插入到2前面时,返回head肯定是不对的,要返回分割点seperator->1,2。我特么在说些什么啊。o(╯□╰)o

 

等第二遍刷的时候,再把代码优化一下吧叫喊

    public ListNode partition(ListNode head, int x) {
		if (head == null || head.next == null) {
			return head;
		}
		ListNode seperator = new ListNode(0);
		seperator.next = head;
		boolean isSplit = true;
		while (seperator.next != null) {
			if (seperator.next.val >= x) {
				break;
			}
			seperator = seperator.next;
			isSplit = false;
		}
		ListNode tem = seperator;
		ListNode tail = seperator;
		while (tem.next != null) {
			if (tem.next.val < x) {
				ListNode node = tem.next;
				tem.next = node.next;
				node.next = tail.next;
				tail.next = node;
				tail = node;
			}
			if (tem.next != null && tem.next.val < x) {
				continue;
			} else {
				tem = tem.next;
			}
			if (tem == null) {
				break;
			}
		}
		return isSplit ? seperator.next : head;
	}

 

分享到:
评论

相关推荐

    python-leetcode题解之086-Partition-List

    python python_leetcode题解之086_Partition_List

    js-leetcode题解之86-partition-list.js

    javascript js_leetcode题解之86-partition-list.js

    c语言-leetcode题解之0086-partition-list.zip

    c语言基础 c语言_leetcode题解之0086_partition_list.zip

    LeetCode最全代码

    * [Linked List](https://github.com/kamyu104/LeetCode#linked-list) * [Stack](https://github.com/kamyu104/LeetCode#stack) * [Queue](https://github.com/kamyu104/LeetCode#queue) * [Heap]...

    Leetcode题目+解析+思路+答案.pdf

    - **Partition List**:将链表按值分割成两个部分。 - **Add Two Numbers**:两个非负整数相加,结果存储在链表中。 - **Copy List with Random Pointer**:复制带有随机指针的链表。 8. **数学(Math)**: - ...

    leetcode中文版-LeetCode:力码

    86.Partition List LeetCode 92.Reverse Linked List II LeetCode 138.Copy List with Random Pointer LeetCode 142.Linked List Cycle II(solve1) LeetCode 142.Linked List Cycle II(solve2) LeetCode 160....

    Leetcode答案(c++版)

    **1.8 Partition List (86)** - **问题描述**:给定一个链表和一个值 x,将链表中小于 x 的节点排在大于等于 x 的节点之前。 - **解题思路**: - 创建两个虚拟头节点分别记录小于 x 和大于等于 x 的节点。 - 遍历...

    leetcode中325题python-leetcode:leetcode

    partition-list 92 反转链表 II reverse-linked-list-ii(Reverse a Sub-list) 141 环形链表 linked-list-cycle 142 环形链表 II linked-list-cycle-ii 143 重排链表 reorder-list 148 排序链表 sort-list 234 回文...

    leetcode-cpp刷题

    - **2.2.3 Partition List** - 按照给定值对链表进行分区。 - 实现思路:维护两个指针,分别指向小于和大于给定值的节点,最后连接两个部分。 - **2.2.4 Remove Duplicates from Sorted List** - 移除排序链表...

    python-leetcode面试题解之第86题分隔链表-题解.zip

    这段代码首先定义了一个`ListNode`类,然后实现了`partitionList`函数,按照上述策略进行链表分割。函数接受链表头节点作为输入,并返回两个新链表的头节点。 通过解决这个问题,你不仅可以提高对链表操作的理解,...

    leetcodelintcode差异-leetcode-python:leetcode-python

    leetcode lintcode差异 leetcode-python 九章算法基础班 二分 题目 地址 153. Find ...List) LintCode 373. Partition Array by Odd and Even Mock Interview 题目 Solution Tag Dynamic Programming

    leetcode338-LeetCode_practice:LeetCode_practice

    list , Reference: Stack , Reference: , , Heap , Tree , , , DP/Greedy Reference: Reference: , Reference: , , , , , Recurrence Reference: Important NOTE!: 其中的Partition 是很常见的operation,标准做法是...

    LeetCode练习答案

    - **划分链表(Partition List)**: 将链表中所有小于x的节点移到所有大于或等于x的节点之前。 - **两数相加(Add Two Numbers)**: 给定两个非空链表代表两个非负整数,数字以逆序方式存储,每一位节点包含一个数字,将...

Global site tag (gtag.js) - Google Analytics