Write a program to input 50 names along with their weights in an array and sort the names in alphabetical order using selection sort technique.
In java only...
with weight solve it and spam answer will be reported.....
pls give the correct answer
I need it for my project
Answers
Answered by
0
Answer:
ok
Explanation:
Answered by
0
Explanation:
// Java program for implementation of Selection Sort
class SelectionSort
{
void sort(int arr[])
{
int n = arr.length;
// One by one move boundary of unsorted subarray
for (int i = 0; i < n-1; i++)
{
// Find the minimum element in unsorted array
int min_idx = i;
for (int j = i+1; j < n; j++)
if (arr[j] < arr[min_idx])
min_idx = j;
// Swap the found minimum element with the first
// element
int temp = arr[min_idx];
arr[min_idx] = arr[i];
arr[i] = temp;
}
}
Similar questions