LeetCode 2149. Rearrange Array Elements by Sign
原题链接在这里:https://leetcode.com/problems/rearrange-array-elements-by-sign/
题目:
You are given a 0-indexed integer array nums
of even length consisting of an equal number of positive and negative integers.
You should rearrange the elements of nums
such that the modified array follows the given conditions:
- Every consecutive pair of integers have opposite signs.
- For all integers with the same sign, the order in which they were present in
nums
is preserved. - The rearranged array begins with a positive integer.
Return the modified array after rearranging the elements to satisfy the aforementioned conditions.
Example 1:
Input: nums = [3,1,-2,-5,2,-4] Output: [3,-2,1,-5,2,-4] Explanation: The positive integers in nums are [3,1,2]. The negative integers are [-2,-5,-4]. The only possible way to rearrange them such that they satisfy all conditions is [3,-2,1,-5,2,-4]. Other ways such as [1,-2,2,-5,3,-4], [3,1,2,-2,-5,-4], [-2,3,-5,1,-4,2] are incorrect because they do not satisfy one or more conditions.
Example 2:
Input: nums = [-1,1] Output: [1,-1] Explanation: 1 is the only positive integer and -1 the only negative integer in nums. So nums is rearranged to [1,-1].
Constraints:
2 <= nums.length <= 2 * 105
nums.length
is even1 <= |nums[i]| <= 105
nums
consists of equal number of positive and negative integers.
题解:
Have a positive number pointer starting from 0.
Have a negative number pointer starting from 1.
For each num in nums, if it is positive, assign it to positive pointer, pointer += 2.
Vice versa.
Time Complexity: O(n). n = nums.length.
Space: O(1). regardless res.
AC Java:
1 class Solution { 2 public int[] rearrangeArray(int[] nums) { 3 if(nums == null || nums.length == 0){ 4 return nums; 5 } 6 7 int n = nums.length; 8 int [] res = new int[n]; 9 int pi = 0; 10 int ni = 1; 11 for(int i = 0; i < n; i++){ 12 if(nums[i] > 0){ 13 res[pi] = nums[i]; 14 pi += 2; 15 }else{ 16 res[ni] = nums[i]; 17 ni += 2; 18 } 19 } 20 21 return res; 22 } 23 }
【推荐】还在用 ECharts 开发大屏?试试这款永久免费的开源 BI 工具!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步