** IN JAVA **  I just want to add the main method according to these commands: 1- Array must be user typed 2- Write Array print statement before arranging the elements and after writing the elements For ex: System.out.println(“Array after sorting is: “);   THE CODE IS: void selectionSort(int List[]) {   int temp, min;   int size = List.length;   for (int i = 0; i < size; i++){   min = i;   for (j = i + 1; j < size; j++)   {   if (List[j] < List[min])    {min = j;  }      }   temp = List[min];   List[min] = List[i];   //swap   List[i] = temp; } }

Database System Concepts
7th Edition
ISBN:9780078022159
Author:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Chapter1: Introduction
Section: Chapter Questions
Problem 1PE
icon
Related questions
Question

** IN JAVA ** 

I just want to add the main method according to these commands:
1- Array must be user typed
2- Write Array print statement before arranging the elements and after writing the elements
For ex:
System.out.println(“Array after sorting is: “);

 

THE CODE IS:

void selectionSort(int List[])

{

  int temp, min;

  int size = List.length;

  for (int i = 0; i < size; i++){

  min = i;

  for (j = i + 1; j < size; j++)

  {

  if (List[j] < List[min])

   {min = j;  } 

    }

  temp = List[min];

  List[min] = List[i];   //swap

  List[i] = temp;

}

}

Expert Solution
Introduction

We know that Java is an Object Oriented Programming Language.
It means, here everything is in the form of class and objects.
So, first of all, we need to create a class.
I have created a class named "Main".

Then we have to place the selectionSort() method inside this class.

After that, we have to create the main method.
During program execution, the Java Virtual Machine (JVM) calls the main method. 
In the main method, we have to prompt the user to enter the array size and then create the array of the specified size.
Then we have to prompt the user to enter the array elements. [Enter only integer values as array is of "int" type]
Display the array elements before sorting.
After that, we create an object of the Main class and call the selectionSort() method passing the created array as the parameter.
Then we display the sorted array elements.

steps

Step by step

Solved in 3 steps with 4 images

Blurred answer
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
Database System Concepts
Database System Concepts
Computer Science
ISBN:
9780078022159
Author:
Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher:
McGraw-Hill Education
Starting Out with Python (4th Edition)
Starting Out with Python (4th Edition)
Computer Science
ISBN:
9780134444321
Author:
Tony Gaddis
Publisher:
PEARSON
Digital Fundamentals (11th Edition)
Digital Fundamentals (11th Edition)
Computer Science
ISBN:
9780132737968
Author:
Thomas L. Floyd
Publisher:
PEARSON
C How to Program (8th Edition)
C How to Program (8th Edition)
Computer Science
ISBN:
9780133976892
Author:
Paul J. Deitel, Harvey Deitel
Publisher:
PEARSON
Database Systems: Design, Implementation, & Manag…
Database Systems: Design, Implementation, & Manag…
Computer Science
ISBN:
9781337627900
Author:
Carlos Coronel, Steven Morris
Publisher:
Cengage Learning
Programmable Logic Controllers
Programmable Logic Controllers
Computer Science
ISBN:
9780073373843
Author:
Frank D. Petruzella
Publisher:
McGraw-Hill Education