-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathSelectionSort.c
More file actions
45 lines (41 loc) · 816 Bytes
/
SelectionSort.c
File metadata and controls
45 lines (41 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
#include<stdio.h>
void swap(int *xp, int *yp)
{
int temp = *xp;
*xp = *yp;
*yp = temp;
}
void SelectionSort(int arr[], int n)
{
int i, j, min_idx;
for (i = 0; i < n-1; i++)
{
min_idx = i;
for (j = i+1; j < n; j++)
if (arr[j] < arr[min_idx])
min_idx = j;
swap(&arr[min_idx], &arr[i]);
}
}
void main()
{
int n;
printf("Enter No. of elements in the array\n");
scanf("%d",&n);
int a[n];
for(int i=0;i<n;i++)
{
printf("Enter element no. %d\n",i);
scanf("%d",&a[i]);
}
for(int i=0;i<n;i++)
{
printf("%d\n",a[i]);
}
SelectionSort(a,n);
printf("Sorted Array:");
for(int i=0;i<n;i++)
{
printf("%d ",a[i]);
}
}