mirror of
https://github.moeyy.xyz/https://github.com/TheAlgorithms/C.git
synced 2023-10-11 15:56:24 +08:00
* fix docs
* fix insertion sort and selection sort
This commit is contained in:
parent
ff2e7a3528
commit
10d006c3b1
@ -1,29 +1,24 @@
|
|||||||
// sorting of array list using insertion sort
|
/**
|
||||||
|
* @file
|
||||||
|
* @brief [Insertion sort](https://en.wikipedia.org/wiki/Insertion_sort)
|
||||||
|
* algorithm implementation.
|
||||||
|
*/
|
||||||
|
#include <assert.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <time.h>
|
||||||
|
|
||||||
/*Displays the array, passed to this method*/
|
/**
|
||||||
void display(int *arr, int n)
|
* Insertion sort algorithm implements
|
||||||
{
|
* @param arr array to be sorted
|
||||||
int i;
|
* @param size size of array
|
||||||
for (i = 0; i < n; i++)
|
|
||||||
{
|
|
||||||
printf("%d ", arr[i]);
|
|
||||||
}
|
|
||||||
printf("\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
/*This is where the sorting of the array takes place
|
|
||||||
arr[] --- Array to be sorted
|
|
||||||
size --- Array Size
|
|
||||||
*/
|
*/
|
||||||
void insertionSort(int *arr, int size)
|
void insertionSort(int *arr, int size)
|
||||||
{
|
{
|
||||||
int i, j, key;
|
for (int i = 1; i < size; i++)
|
||||||
for (i = 0; i < size; i++)
|
|
||||||
{
|
{
|
||||||
j = i - 1;
|
int j = i - 1;
|
||||||
key = arr[i];
|
int key = arr[i];
|
||||||
/* Move all elements greater than key to one position */
|
/* Move all elements greater than key to one position */
|
||||||
while (j >= 0 && key < arr[j])
|
while (j >= 0 && key < arr[j])
|
||||||
{
|
{
|
||||||
@ -35,28 +30,30 @@ void insertionSort(int *arr, int size)
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Test function
|
||||||
|
* @returns None
|
||||||
|
*/
|
||||||
|
static void test()
|
||||||
|
{
|
||||||
|
const int size = rand() % 500; /* random array size */
|
||||||
|
int *arr = (int *)calloc(size, sizeof(int));
|
||||||
|
|
||||||
|
/* generate size random numbers from -50 to 49 */
|
||||||
|
for (int i = 0; i < size; i++)
|
||||||
|
{
|
||||||
|
arr[i] = (rand() % 100) - 50; /* signed random numbers */
|
||||||
|
}
|
||||||
|
insertionSort(arr, size);
|
||||||
|
for (int i = 0; i < size - 1; ++i)
|
||||||
|
{
|
||||||
|
assert(arr[i] <= arr[i + 1]);
|
||||||
|
}
|
||||||
|
free(arr);
|
||||||
|
}
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
int n;
|
/* Intializes random number generator */
|
||||||
printf("Enter size of array:\n");
|
srand(time(NULL));
|
||||||
scanf("%d", &n); // E.g. 8
|
test();
|
||||||
|
|
||||||
printf("Enter the elements of the array\n");
|
|
||||||
int i;
|
|
||||||
int *arr = (int *)malloc(n * sizeof(int));
|
|
||||||
for (i = 0; i < n; i++)
|
|
||||||
{
|
|
||||||
scanf("%d", &arr[i]);
|
|
||||||
}
|
|
||||||
|
|
||||||
printf("Original array: ");
|
|
||||||
display(arr, n);
|
|
||||||
|
|
||||||
insertionSort(arr, n);
|
|
||||||
|
|
||||||
printf("Sorted array: ");
|
|
||||||
display(arr, n);
|
|
||||||
|
|
||||||
free(arr);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
@ -1,20 +1,18 @@
|
|||||||
// sorting of array list using selection sort
|
/**
|
||||||
|
* @file
|
||||||
|
* @brief [Selection sort](https://en.wikipedia.org/wiki/Selection_sort)
|
||||||
|
* algorithm implementation.
|
||||||
|
*/
|
||||||
|
#include <assert.h>
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
#include <time.h>
|
||||||
|
|
||||||
/*Displays the array, passed to this method*/
|
/**
|
||||||
void display(int *arr, int n)
|
* Swapped two numbers using pointer
|
||||||
{
|
* @param first first pointer of first number
|
||||||
int i;
|
* @param second second pointer of second number
|
||||||
for (i = 0; i < n; i++)
|
*/
|
||||||
{
|
|
||||||
printf("%d ", arr[i]);
|
|
||||||
}
|
|
||||||
|
|
||||||
printf("\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
/*Swap function to swap two values*/
|
|
||||||
void swap(int *first, int *second)
|
void swap(int *first, int *second)
|
||||||
{
|
{
|
||||||
int temp = *first;
|
int temp = *first;
|
||||||
@ -22,13 +20,14 @@ void swap(int *first, int *second)
|
|||||||
*second = temp;
|
*second = temp;
|
||||||
}
|
}
|
||||||
|
|
||||||
/*This is where the sorting of the array takes place
|
/**
|
||||||
arr[] --- Array to be sorted
|
* Selection sort algorithm implements
|
||||||
size --- Array Size
|
* @param arr array to be sorted
|
||||||
|
* @param size size of array
|
||||||
*/
|
*/
|
||||||
void selectionSort(int *arr, int size)
|
void selectionSort(int *arr, int size)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < size; i++)
|
for (int i = 0; i < size - 1; i++)
|
||||||
{
|
{
|
||||||
int min_index = i;
|
int min_index = i;
|
||||||
for (int j = i + 1; j < size; j++)
|
for (int j = i + 1; j < size; j++)
|
||||||
@ -38,32 +37,39 @@ void selectionSort(int *arr, int size)
|
|||||||
min_index = j;
|
min_index = j;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
swap(&arr[i], &arr[min_index]);
|
if (min_index != i)
|
||||||
|
{
|
||||||
|
swap(arr + i, arr + min_index);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** Test function
|
||||||
|
* @returns None
|
||||||
|
*/
|
||||||
|
static void test()
|
||||||
|
{
|
||||||
|
const int size = rand() % 500; /* random array size */
|
||||||
|
int *arr = (int *)calloc(size, sizeof(int));
|
||||||
|
|
||||||
|
/* generate size random numbers from -50 to 49 */
|
||||||
|
for (int i = 0; i < size; i++)
|
||||||
|
{
|
||||||
|
arr[i] = (rand() % 100) - 50; /* signed random numbers */
|
||||||
|
}
|
||||||
|
selectionSort(arr, size);
|
||||||
|
for (int i = 0; i < size - 1; ++i)
|
||||||
|
{
|
||||||
|
assert(arr[i] <= arr[i + 1]);
|
||||||
|
}
|
||||||
|
free(arr);
|
||||||
|
}
|
||||||
|
|
||||||
|
/** Driver Code */
|
||||||
int main(int argc, const char *argv[])
|
int main(int argc, const char *argv[])
|
||||||
{
|
{
|
||||||
int n;
|
/* Intializes random number generator */
|
||||||
printf("Enter size of array:\n");
|
srand(time(NULL));
|
||||||
scanf("%d", &n); // E.g. 8
|
test();
|
||||||
|
|
||||||
printf("Enter the elements of the array\n");
|
|
||||||
int i;
|
|
||||||
int *arr = (int *)malloc(n * sizeof(int));
|
|
||||||
for (i = 0; i < n; i++)
|
|
||||||
{
|
|
||||||
scanf("%d", &arr[i]);
|
|
||||||
}
|
|
||||||
|
|
||||||
printf("Original array: ");
|
|
||||||
display(arr, n); // Original array : 10 11 9 8 4 7 3 8
|
|
||||||
|
|
||||||
selectionSort(arr, n);
|
|
||||||
|
|
||||||
printf("Sorted array: ");
|
|
||||||
display(arr, n); // Sorted array : 3 4 7 8 8 9 10 11
|
|
||||||
|
|
||||||
free(arr);
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user