diff --git a/14.c b/14.c index fc183f5..4bdb81f 100644 --- a/14.c +++ b/14.c @@ -1,4 +1,3 @@ -#include #include 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); diff --git a/14.png b/14.png index 2d19cc7..146ef46 100644 Binary files a/14.png and b/14.png differ