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 Array Exercises: Arrange the elements of a given array of integers where all positive integers appear before all the negative integers

Java Array: Exercise-49 with Solution

Write a Java program to arrange the elements of a given array of integers where all positive integers appear before all the negative integers.

Pictorial Presentation:

Java Array Exercises: Arrange the elements of a given array of integers where all positive  integers appear before all the negative integers

Sample Solution:

Java Code:

import java.util.Arrays;
public class Main {

    public static void main(String[] args) {
       int arra_nums[] = {-4, 8, 6, -5, 6, -2, 1, 2, 3, -11};
       System.out.println("Original array : "+Arrays.toString(arra_nums)); 
       int j,temp,arr_size;

        arr_size = arra_nums.length;
        for (int i = 0; i <arr_size; i++){
            j = i;  
            
           //Shift positive numbers left, negative numbers right
         
            while ((j > 0) && (arra_nums[j] >0) && (arra_nums[j-1] < 0)){
                  temp = arra_nums[j];
                  arra_nums[j] = arra_nums[j-1];
                  arra_nums[j-1] = temp;
                  j--;
            }
        }
       System.out.println("New array : "+Arrays.toString(arra_nums)); 
    }       
 }

Sample Output:

Original array : [-4, 8, 6, -5, 6, -2, 1, 2, 3, -11]
New array : [8, 6, 6, 1, 2, 3, -4, -5, -2, -11]

Flowchart:

Flowchart: Arrange the elements of a given array of integers where all positive integers appear before all the negative integers

Visualize Java code execution (Python Tutor):


Java Code Editor:

Improve this sample solution and post your code through Disqus

Previous: Write a Java program to arrange the elements of a given array of integers where all negative integers appear before all the positive integers.
Next: Write a Java program to sort an array of positive integers of a given array, in the sorted array the value of the first element should be maximum, second value should be minimum value, third should be second maximum, fourth second be second minimum and so on.

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