Problem:
(This is a slightly harder version of the fix34 problem.) Return an array that contains exactly the same numbers as the given array, but rearranged so that every 4 is immediately followed by a 5. Do not move the 4's, but every other number may move. The array contains the same number of 4's and 5's, and every 4 has a number after it that is not a 4. In this version, 5's may appear anywhere in the original array.
fix45({5, 4, 9, 4, 9, 5}) → {9, 4, 5, 4, 5, 9}
fix45({1, 4, 1, 5}) → {1, 4, 5, 1}
fix45({1, 4, 1, 5, 5, 4, 1}) → {1, 4, 5, 1, 1, 4, 5}
Solution:
public int[] fix45(int[] nums) { for (int i = 0; i < nums.length; i++) { if (nums[i] == 4) { for (int j = 0; j < nums.length; j++) { if (nums[j] == 5) { if (j > 0 && nums[j-1] != 4) { int tmp = nums[i+1]; nums[i+1] = 5; nums[j] = tmp; } else if (j == 0) { int tmp = nums[i+1]; nums[i+1] = 5; nums[j] = tmp; } } } } } return nums; }
public int[] fix34(int[] nums) {
ReplyDeleteint temp = 0;
for (int i= 0; i < nums.length-1; i++) {
if (nums[i] == 3 && nums[i+1] != 4) {
for (int j = nums.length-1; j > 0; j--) {
if (nums[j] == 4 && nums[j-1] != 3) {
temp = nums[i+1];
nums[i+1] = nums[j];
nums[j] = temp;
}
}
}
} return nums;
}
This is for fix34
Delete