Computer Science, asked by Ishu8364, 1 year ago

Write a program in Java to perform sorting in ascending order using linear sorting technique.
gyzz plz do it...​

Answers

Answered by Anonymous
1

Hey mate!!!

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;

}

}

// Prints the array

void printArray(int arr[])

{

int n = arr.length;

for (int i=0; i<n; ++i)

System.out.print(arr[i]+" ");

System.out.println();

}

// Driver code to test above

public static void main(String args[])

{

SelectionSort ob = new SelectionSort();

int arr[] = {64,25,12,22,11};

ob.sort(arr);

System.out.println("Sorted array");

ob.printArray(arr);

}

}

Hope this helps you...

Mark as the brainliest.


Ishu8364: but I said to do it in linear sorting!
Answered by sunshineeee0905
2

Your answer is here

Plz mark the brainliest ☺️

Attachments:

sunshineeee0905: Linear search is searching technique I think you are asking for another method of searching . Another method is the one which I ve solved ie binary search
Ishu8364: yeah...I know!that
Similar questions