We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 95bace7 commit 32fe2e6Copy full SHA for 32fe2e6
sort.h
@@ -35,11 +35,11 @@ typedef struct listint_s
35
struct listint_s *next;
36
} listint_t;
37
38
-/* Printing helper functions */
+/* Printing functions */
39
void print_array(const int *array, size_t size);
40
void print_list(const listint_t *list);
41
42
-/* Sorting algoritms */
+/* Types of Sorting Algoritms */
43
void bubble_sort(int *array, size_t size);
44
void insertion_sort_list(listint_t **list);
45
void selection_sort(int *array, size_t size);
0 commit comments