- 浏览: 183395 次
- 性别:
- 来自: 济南
文章分类
最新评论
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.
给定一个链表和一个整数n,要求把小于n的放到链表的前面,大于等于n的放到链表的后面,不要打乱原有的顺序。我们可以借助两个辅助节点,smallNode和bigNode分别将链表分为值小于n得一段和值大于等于n的一段,最后将两段连接起来。代码如下:
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.
给定一个链表和一个整数n,要求把小于n的放到链表的前面,大于等于n的放到链表的后面,不要打乱原有的顺序。我们可以借助两个辅助节点,smallNode和bigNode分别将链表分为值小于n得一段和值大于等于n的一段,最后将两段连接起来。代码如下:
/** * 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) { if(head == null) return head; ListNode smallNode = new ListNode(0); ListNode helperS = smallNode; ListNode bigNode = new ListNode(0); ListNode helperB = bigNode; while(head != null) { if(head.val < x) { smallNode.next = head; smallNode = smallNode.next; } else { bigNode.next = head; bigNode = bigNode.next; } head = head.next; } bigNode.next = null; smallNode.next = helperB.next; return helperS.next; } }
发表评论
-
498. Diagonal Traverse
2019-11-15 13:52 265Given a matrix of M x N eleme ... -
496 Next Greater Element I
2019-11-14 13:50 267You are given two arrays (witho ... -
Word Break II
2016-03-09 03:15 384Given a string s and a dictiona ... -
Insert Interval
2016-03-08 02:11 374Given a set of non-overlapping ... -
Merge Intervals
2016-03-07 05:25 497Given a collection of intervals ... -
Merge k Sorted Lists
2016-03-07 04:03 563Merge k sorted linked lists and ... -
Multiply Strings
2016-03-06 07:27 475Given two numbers represented a ... -
N-Queens II
2016-03-06 03:06 664Follow up for N-Queens problem. ... -
N-Queens
2016-03-06 02:47 469The n-queens puzzle is the prob ... -
First Missing Positive
2016-03-05 03:09 429Given an unsorted integer array ... -
Spiral Matrix
2016-03-04 03:39 575Given a matrix of m x n element ... -
Trapping Rain Water
2016-03-04 02:54 580Given n non-negative integers r ... -
Repeated DNA Sequences
2016-03-03 03:10 426All DNA is composed of a series ... -
Increasing Triplet Subsequence
2016-03-02 02:48 898Given an unsorted array return ... -
Maximum Product of Word Lengths
2016-03-02 01:56 929Given a string array words, fin ... -
LRU Cache
2016-02-29 10:37 602Design and implement a data str ... -
Super Ugly Number
2016-02-29 07:07 672Write a program to find the nth ... -
Longest Increasing Path in a Matrix
2016-02-29 05:56 842Given an integer matrix, find t ... -
Coin Change
2016-02-29 04:39 782You are given coins of differen ... -
Minimum Height Trees
2016-02-29 04:11 704For a undirected graph with tre ...
相关推荐
2. 列表分区(List Partitioning) 列表分区允许数据库管理员根据明确的值列表来分配数据到不同的分区。这特别适用于数据属于明确已知的分类,并且每个分类的值是固定的。例如,可以根据国家代码或地区代码将销售...
python python_leetcode题解之086_Partition_List
在此案例中,执行计划包含了三个主要的`UNION-ALL`操作,每个操作都涉及到了`PARTITION RANGE SINGLE`和`PARTITION LIST SINGLE`,表明查询可能在分区表上进行,并且可能针对不同的分区进行独立处理。`NESTED LOOPS...
2. 列表分区 (List partition):基于列值的预定义列表进行分区,适合于有限且固定的值集,如地区代码。 3. 哈希分区 (Hash partition):通过哈希函数将行分配到不同分区,提供均匀的数据分布,适用于无特定顺序的...
这段代码首先定义了一个`ListNode`类,然后实现了`partitionList`函数,按照上述策略进行链表分割。函数接受链表头节点作为输入,并返回两个新链表的头节点。 通过解决这个问题,你不仅可以提高对链表操作的理解,...
javascript js_leetcode题解之86-partition-list.js
- **Partition List**:将链表按值分割成两个部分。 - **Add Two Numbers**:两个非负整数相加,结果存储在链表中。 - **Copy List with Random Pointer**:复制带有随机指针的链表。 8. **数学(Math)**: - ...
c语言基础 c语言_leetcode题解之0086_partition_list.zip
PartitionList则管理仓库的四个分区。为了解决循环依赖问题,引入了Listinfo、Loginfo接口,用于日志记录和单据存储。 3. **模块内部类的接口规范** WarehouseController提供了多个服务接口,如createCheckinList...
* [Linked List](https://github.com/kamyu104/LeetCode#linked-list) * [Stack](https://github.com/kamyu104/LeetCode#stack) * [Queue](https://github.com/kamyu104/LeetCode#queue) * [Heap]...
1. 使用wingrub的"Partition List"功能检查硬盘分区信息,这些信息将在`menu.lst`中用到。 2. 打开记事本,根据分区信息和系统位置编写`menu.lst`。每个操作系统应有一条相应的启动项,格式如下: ```text title ...
- **划分链表(Partition List)**: 将链表中所有小于x的节点移到所有大于或等于x的节点之前。 - **两数相加(Add Two Numbers)**: 给定两个非空链表代表两个非负整数,数字以逆序方式存储,每一位节点包含一个数字,将...
- **2.2.3 Partition List** - 按照给定值对链表进行分区。 - 实现思路:维护两个指针,分别指向小于和大于给定值的节点,最后连接两个部分。 - **2.2.4 Remove Duplicates from Sorted List** - 移除排序链表...
通过"Tools-Partition list"查看硬盘分区列表,找到D盘对应的Name,例如(hd0, 4),这个信息将在配置GRUB时使用。 配置GRUB的环节至关重要。GRUB的配置文件是`menu.lst`,使用文本编辑器打开此文件,并修改内容如下...
- 使用`tools-Partition list`查看磁盘分区信息,记下D盘对应的Name,例如(hd0, 4),这将在后续配置中使用。 4. **配置Grub**: - Grub的配置文件是`MENU.LST`,使用文本编辑器打开此文件。 - 修改`MENU.LST`...
- **PartitionList** - 将链表分割成两部分。 - **TwoListsSum** - 两个链表相加。 - **TwoListsSumAdvanced** - 两个链表相加的高级版本。 - **RemoveNthNodeFromEndofList** - 从链表末端删除第N个节点。 - **...
**1.8 Partition List (86)** - **问题描述**:给定一个链表和一个值 x,将链表中小于 x 的节点排在大于等于 x 的节点之前。 - **解题思路**: - 创建两个虚拟头节点分别记录小于 x 和大于等于 x 的节点。 - 遍历...