exp 14: correct wrong algorithm name

Signed-off-by: Amneesh Singh <natto@weirdnatto.in>
This commit is contained in:
2023-01-03 14:22:22 +05:30
parent 5f936b76bb
commit 71b78d17d6
2 changed files with 1 additions and 2 deletions

3
14.c
View File

@@ -1,4 +1,3 @@
#include <math.h>
#include <stdio.h>
void shell_sort(int arr[], int n) {
@@ -22,7 +21,7 @@ int main() {
const int SIZE = 5;
int arr[] = {93, 110, 12398, -5, 2};
printf("Insertion Sort on: ");
printf("Shell Sort on: ");
display(arr, SIZE);
shell_sort(arr, SIZE);
display(arr, SIZE);

BIN
14.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 11 KiB

After

Width:  |  Height:  |  Size: 9.9 KiB