Please note, this is a STATIC archive of website www.w3resource.com from 19 Jul 2022, cach3.com does not collect or store any user information, there is no "phishing" involved.
w3resource

Java Exercises: Remove all occurrences of a specified value in a given array, return the new length

Java Basic: Exercise-144 with Solution

Write a Java program to remove all occurrences of a specified value in a given array of integers and return the new length of the array.

Pictorial Presentation:

Java Basic Exercises: Remove all occurrences of a specified value in a given array of integers and return the new length of the array.

Sample Solution:

Java Code:

import java.util.*;
public  class Solution {
     /** 
     *@param nums: A list of integers
     *@param element: An integer
     *@return: The new length after remove
     */
  public static int removeElement(int[] nums, int elem) {
      int length = nums.length; 
      if(length==0) return 0; 
      int i=0; 
      for(int j=0; j<length; j++)
      {
        if(nums[j]!=elem)
        {
          nums[i]=nums[j];
          i++; 
        }
      }
      if(i<length) nums[i]='\0';
      return i; 
    }
    public static void main(String[] args) {
		int x = 6;
		int [] nums = {1,4,6,7,6,2};
		System.out.println("Original array: "+Arrays.toString(nums));
        System.out.println("The length of the new array is: " + removeElement(nums, x));
	}		
}

Sample Output:

Original array: [1, 4, 6, 7, 6, 2]
The length of the new array is: 4

Flowchart:

Flowchart: Java exercises: Remove all occurrences of a specified value in a given array of integers and return the new length of the array.

Java Code Editor:

Contribute your code and comments through Disqus.

Previous: Write a Java program to merge two given sorted lists.
Next: Write a Java program to remove the nth element from the end of a given list.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Java: Tips of the Day

How to sort an ArrayList?

Collections.sort(testList);
Collections.reverse(testList);

That will do what you want. Remember to import Collections though!

Ref: https://bit.ly/32urdSe