assignment03 comments

This commit is contained in:
SowinskiBraeden committed 2025-11-22 13:15:49 -08:00
1 parent 9a7805d664
commit b673d9c625
2 files changed
+21

No files matched your search

+11
View File
@@ -8,6 +8,17 @@
#define INSERTION_SORT 1
#define SELECTION_SORT 2
/*
* Course: COMP 2510
* Assignment: Assignment 3
* Name: Your Full Name
* Student ID: 12345678
* Date: 2025-09-18
* Description: demo insertion sort & selection sort
* by sorting an array of integers input
* by the user.
*/
void insertionSort(int *arr, size_t size)
{
if (size < MIN_SIZE)