Answers for "what's selection sort"

C
2

selection sort

// C algorithm for SelectionSort

void selectionSort(int arr[], int n)
{
	for(int i = 0; i < n-1; i++)
	{
		int min = i;
        
		for(int j = i+1; j < n; j++)
		{
			if(arr[j] < arr[min])
            	min = j;
		}
        
		if(min != i)
		{
        	// Swap
			int temp = arr[i];
			arr[i] = arr[min];
			arr[min] = temp;
		}
	}
}
Posted by: Guest on January-05-2021
0

Selection Sort

x = np.array([2, 1, 4, 3, 5])
selection_sort(x)
Posted by: Guest on October-09-2021

Code answers related to "C"

Browse Popular Code Answers by Language