-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRearrangeArrayElementsbySign2149.java
99 lines (82 loc) · 2.75 KB
/
RearrangeArrayElementsbySign2149.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/*
2149. Rearrange Array Elements by Sign
Medium
Topics
Companies
Hint
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 even
1 <= |nums[i]| <= 105
nums consists of equal number of positive and negative integers.
*/
public class RearrangeArrayElementsbySign2149 {
Solution s = new Solution();
}
class Solution {
public int[] rearrangeArray(int[] a) {
int n=a.length;
int []ans=new int[n];
int posIndex=0,negIndex=1;
for(int i=0;i<n;i++){
if(a[i]>0){
ans[posIndex]=a[i];
posIndex+=2;
}
else{
ans[negIndex]=a[i];
negIndex+=2;
}
}
return ans;
}
}
// class Solution {
// public int[] rearrangeArray(int[] nums) {
// int len = nums.length;
// int[] result = new int[len];
// int pos_pointer=0;
// int neg_pointer=0;
// if (nums[pos_pointer] < 0) {
// pos_pointer++;
// while (nums[pos_pointer] < 0) {
// pos_pointer++;
// }
// } else{
// neg_pointer++;
// while (nums[neg_pointer] > 0) {
// neg_pointer++;
// }
// }
// for (int i = 0; i < len; ) {
// result[i++]= nums[pos_pointer++];
// while (pos_pointer < len && nums[pos_pointer] < 0) {
// pos_pointer++;
// }
// result[i++]= nums[neg_pointer++];
// while (neg_pointer < len && nums[neg_pointer] > 0 ) {
// neg_pointer++;
// }
// }
// return result;
// }
// }