Move Element To End
Move Element To End[Medium]
- You’re given an array of integers and an integer. Write a function that moves all instances of that integer in the array to the end of the array and returns the array.
- The function should perform this in place (i.e., it should mutate the input array)and doesn’t need to maintain the order of the other integers.
Sample Input
array=[2,1,2,2,2,3,4,2]
toMove = 2
Sample Output
[1,3,4,2,2,2,2,2] // the numbers 1,3,and 4 could be ordered differently
Hints
Hint 1
You can solve this problem in linear time.
Hint 2
In view of Hint #1,you can solve this problem without sorting the input array.Try setting two pointers at the start and end of the array,respectively,and progressively moving them inwards.
Hint 3
Following Hint #2,set two pointers at the start and end of the array,respectively.Move the right pointer inwards so long as it points to the integer to move,and move the left pointer inwards so long as it doesn't point to the integer to move.When both pointers aren't moving, swap their values in place.Repeat this process until the pointers pass each other.
Method 1
【O(n)time∣O(1)space】
import java.util.*;
class Program {
public static List<Integer> moveElementToEnd(List<Integer> array, int toMove) {
// Write your code here.
int count = 0;
for(int i = 0; i < array.size(); i++){
if(array.get(i)!=toMove){
array.set(count++,array.get(i));
}
}
while(count < array.size()){
array.set(count++,toMove);
}
return array;
}
}
Method 2
##
【O(n)time∣O(1)space】
import java.util.*;
class Program {
public static List<Integer> moveElementToEnd(List<Integer> array, int toMove) {
// Write your code here.
int left = 0;
int right = array.size() - 1;
while(left < right){
// left < right [ because prevent right < left, if you don't add this,your algorithm will break.]
// judge the right whether equal toMove,if equal,the right pointer move to right--
while(left < right && array.get(right) == toMove){
right --;
}
//swap left and right
if(array.get(left) == toMove){
int temp = array.get(right);
array.set(right,array.get(left));
array.set(left,temp);
}
left++;
}
return array;
}
}
Enjoy Reading This Article?
Here are some more articles you might like to read next: