** 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; } }
** 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;
}
}
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.
Step by step
Solved in 3 steps with 4 images