-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathselection_sort.c
65 lines (50 loc) · 1.3 KB
/
selection_sort.c
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
/*
* Input : A sequence of n numbers <a1, a2, ..., an>
* Output : Sorted list <a1', a2', ..., an'>
* of the input sequence in ascending order
* Method : Find the minimum value in the list and swap
* it with the first position. Repeat the same for
* the remainder of the list, starting with the second
* position and advancing each time.
*/
#include<stdio.h>
#include<stdlib.h>
main()
{
// Function declaration
void selection_sort(int *, int);
int *array = NULL; // Pointer to int, initialize to nothing.
int n, i;
printf("Enter number of elements: ");
scanf("%d", &n);
// Dynamically allocate memory for n elements
array = (int *)calloc(n, sizeof(int));
// Reading the elements
printf("\nEnter the elements:");
for (i = 0;i < n;i++)
scanf("%d", &array[i]);
// Invoke selection_sort
selection_sort(array, n);
// Display sorted array
printf("sorted array:");
for (i = 0;i < n;i++)
printf("%d ", array[i]);
printf("\n");
}
selection_sort(int *arr, int num)
{
int i, j, small, pos, temp;
for (i = 0;i < num;i++) {
small = arr[i];
pos = i;
for (j = i;j < num;j++) {
if (arr[j] < small) {
small = arr[j];
pos = j;
}
}
temp = arr[i];
arr[i] = small;
arr[pos] = temp;
}
}