comments | difficulty | edit_url | rating | source | tags | |||
---|---|---|---|---|---|---|---|---|
true |
中等 |
1337 |
第 71 场双周赛 Q2 |
|
给你一个下标从 0 开始的整数数组 nums
和一个整数 pivot
。请你将 nums
重新排列,使得以下条件均成立:
- 所有小于
pivot
的元素都出现在所有大于pivot
的元素 之前 。 - 所有等于
pivot
的元素都出现在小于和大于pivot
的元素 中间 。 - 小于
pivot
的元素之间和大于pivot
的元素之间的 相对顺序 不发生改变。- 更正式的,考虑每一对
pi
,pj
,pi
是初始时位置i
元素的新位置,pj
是初始时位置j
元素的新位置。对于小于pivot
的元素,如果i < j
且nums[i] < pivot
和nums[j] < pivot
都成立,那么pi < pj
也成立。类似的,对于大于pivot
的元素,如果i < j
且nums[i] > pivot
和nums[j] > pivot
都成立,那么pi < pj
。
- 更正式的,考虑每一对
请你返回重新排列 nums
数组后的结果数组。
示例 1:
输入:nums = [9,12,5,10,14,3,10], pivot = 10 输出:[9,5,3,10,10,12,14] 解释: 元素 9 ,5 和 3 小于 pivot ,所以它们在数组的最左边。 元素 12 和 14 大于 pivot ,所以它们在数组的最右边。 小于 pivot 的元素的相对位置和大于 pivot 的元素的相对位置分别为 [9, 5, 3] 和 [12, 14] ,它们在结果数组中的相对顺序需要保留。
示例 2:
输入:nums = [-3,4,3,2], pivot = 2 输出:[-3,2,4,3] 解释: 元素 -3 小于 pivot ,所以在数组的最左边。 元素 4 和 3 大于 pivot ,所以它们在数组的最右边。 小于 pivot 的元素的相对位置和大于 pivot 的元素的相对位置分别为 [-3] 和 [4, 3] ,它们在结果数组中的相对顺序需要保留。
提示:
1 <= nums.length <= 105
-106 <= nums[i] <= 106
pivot
等于nums
中的一个元素。
我们可以遍历数组
时间复杂度
class Solution:
def pivotArray(self, nums: List[int], pivot: int) -> List[int]:
a, b, c = [], [], []
for x in nums:
if x < pivot:
a.append(x)
elif x == pivot:
b.append(x)
else:
c.append(x)
return a + b + c
class Solution {
public int[] pivotArray(int[] nums, int pivot) {
int n = nums.length;
int[] ans = new int[n];
int k = 0;
for (int x : nums) {
if (x < pivot) {
ans[k++] = x;
}
}
for (int x : nums) {
if (x == pivot) {
ans[k++] = x;
}
}
for (int x : nums) {
if (x > pivot) {
ans[k++] = x;
}
}
return ans;
}
}
class Solution {
public:
vector<int> pivotArray(vector<int>& nums, int pivot) {
vector<int> ans;
for (int& x : nums) {
if (x < pivot) {
ans.push_back(x);
}
}
for (int& x : nums) {
if (x == pivot) {
ans.push_back(x);
}
}
for (int& x : nums) {
if (x > pivot) {
ans.push_back(x);
}
}
return ans;
}
};
func pivotArray(nums []int, pivot int) []int {
var ans []int
for _, x := range nums {
if x < pivot {
ans = append(ans, x)
}
}
for _, x := range nums {
if x == pivot {
ans = append(ans, x)
}
}
for _, x := range nums {
if x > pivot {
ans = append(ans, x)
}
}
return ans
}
function pivotArray(nums: number[], pivot: number): number[] {
const ans: number[] = [];
for (const x of nums) {
if (x < pivot) {
ans.push(x);
}
}
if (x === pivot) {
ans.push(x);
}
}
for (const x of nums) {
if (x > pivot) {
ans.push(x);
}
}
return ans;
}