Database System Concepts
Database System Concepts
7th Edition
ISBN: 9780078022159
Author: Abraham Silberschatz Professor, Henry F. Korth, S. Sudarshan
Publisher: McGraw-Hill Education
Bartleby Related Questions 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
Check Mark
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.

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