Added my name

This commit is contained in:
MarcUs7i 2025-05-07 16:41:09 +02:00
parent d35c77e353
commit 278fc56984
10 changed files with 16 additions and 16 deletions

View file

@ -3,7 +3,7 @@
*----------------------------------------------------------------------------- *-----------------------------------------------------------------------------
* Exercise Number: S05 * Exercise Number: S05
* Title: Bubble sort implementation * Title: Bubble sort implementation
* Author: */<your name>;/* * Author: Marc Tismonar
*----------------------------------------------------------------------------- *-----------------------------------------------------------------------------
* Description: * Description:
* Implements the bubble sort strategy * Implements the bubble sort strategy

View file

@ -3,7 +3,7 @@
* --------------------------------------------------------- * ---------------------------------------------------------
* Exercise Number: S05 * Exercise Number: S05
* Title: Bubble sort * Title: Bubble sort
* Author: */<your name>;/* * Author: Marc Tismonar
* ---------------------------------------------------------- * ----------------------------------------------------------
* Description: * Description:
* Implements the bubble sort strategy * Implements the bubble sort strategy

View file

@ -3,7 +3,7 @@
*----------------------------------------------------------------------------- *-----------------------------------------------------------------------------
* Exercise Number: S05 * Exercise Number: S05
* Title: Insertion sort implementation * Title: Insertion sort implementation
* Author: */<your name>;/* * Author: Marc Tismonar
*----------------------------------------------------------------------------- *-----------------------------------------------------------------------------
* Description: * Description:
* Implements the insertion sort strategy * Implements the insertion sort strategy

View file

@ -3,7 +3,7 @@
* --------------------------------------------------------- * ---------------------------------------------------------
* Exercise Number: S05 * Exercise Number: S05
* Title: Insertion sort * Title: Insertion sort
* Author: */<your name>;/* * Author: Marc Tismonar
* ---------------------------------------------------------- * ----------------------------------------------------------
* Description: * Description:
* Implements the insertion sort strategy * Implements the insertion sort strategy

View file

@ -1,9 +1,9 @@
/*----------------------------------------------------------------------------- /*-----------------------------------------------------------------------------
* HTBLA-Leonding / Class: <your class name here> * HTBLA-Leonding / Class: 2IHIF
*----------------------------------------------------------------------------- *-----------------------------------------------------------------------------
* Exercise Number: S05 * Exercise Number: S05
* Title: Sorting support functions * Title: Sorting support functions
* Author: */<your name>;/* * Author: Marc Tismonar
*----------------------------------------------------------------------------- *-----------------------------------------------------------------------------
* Description: * Description:
* Basic support functions for sorting * Basic support functions for sorting

View file

@ -3,7 +3,7 @@
* --------------------------------------------------------- * ---------------------------------------------------------
* Exercise Number: S05 * Exercise Number: S05
* Title: Sorting support functions * Title: Sorting support functions
* Author: */<your name>;/* * Author: Marc Tismonar
* ---------------------------------------------------------- * ----------------------------------------------------------
* Description: * Description:
* Interface for sorting algorithms * Interface for sorting algorithms
@ -46,7 +46,7 @@ typedef enum {
* @param list The list to initialize. * @param list The list to initialize.
* @param item_count The number of items to insert. * @param item_count The number of items to insert.
*/ */
void init_list_random(<params>); void init_list_random(IntList list, int item_count);
/** /**
* Prints the values stored in the given list. * Prints the values stored in the given list.

View file

@ -1,9 +1,9 @@
/*----------------------------------------------------------------------------- /*-----------------------------------------------------------------------------
* HTBLA-Leonding / Class: <your class name here> * HTBLA-Leonding / Class: 2IHIF
*----------------------------------------------------------------------------- *-----------------------------------------------------------------------------
* Exercise Number: S05 * Exercise Number: S05
* Title: Sorting criteria * Title: Sorting criteria
* Author: */<your name>;/* * Author: Marc Tismonar
*----------------------------------------------------------------------------- *-----------------------------------------------------------------------------
* Description: * Description:
* Implementation of sorting criteria * Implementation of sorting criteria

View file

@ -3,7 +3,7 @@
* --------------------------------------------------------- * ---------------------------------------------------------
* Exercise Number: S05 * Exercise Number: S05
* Title: Sorting criteria * Title: Sorting criteria
* Author: */<your name>;/* * Author: Marc Tismonar
* ---------------------------------------------------------- * ----------------------------------------------------------
* Description: * Description:
* Interface for sorting algorithms * Interface for sorting algorithms
@ -35,7 +35,7 @@
* @param snd The value to compare. * @param snd The value to compare.
* @return True if the criterion is satisfied, false otherwise. * @return True if the criterion is satisfied, false otherwise.
*/ */
<type> is_in_asc_order(<params>); bool is_in_asc_order(<params>);
/** /**
* Determines whether or not `fst` is larger than or equal to `snd` (descending order). * Determines whether or not `fst` is larger than or equal to `snd` (descending order).
@ -44,6 +44,6 @@
* @param snd The value to compare. * @param snd The value to compare.
* @return True if the criterion is satisfied, false otherwise. * @return True if the criterion is satisfied, false otherwise.
*/ */
<type> is_in_desc_order(i<params>); bool is_in_desc_order(i<params>);
#endif #endif

View file

@ -1,9 +1,9 @@
/*----------------------------------------------------------------------------- /*-----------------------------------------------------------------------------
* HTBLA-Leonding / Class: <your class name here> * HTBLA-Leonding / Class: 2IHIF
*----------------------------------------------------------------------------- *-----------------------------------------------------------------------------
* Exercise Number: S05 * Exercise Number: S05
* Title: Stopwatch * Title: Stopwatch
* Author: */<your name>;/* * Author: Marc Tismonar
*----------------------------------------------------------------------------- *-----------------------------------------------------------------------------
* Description: * Description:
* Implementation of a simple stopwatch * Implementation of a simple stopwatch

View file

@ -3,7 +3,7 @@
* --------------------------------------------------------- * ---------------------------------------------------------
* Exercise Number: S05 * Exercise Number: S05
* Title: Stopwatch * Title: Stopwatch
* Author: */<your name>;/* * Author: Marc Tismonar
* ---------------------------------------------------------- * ----------------------------------------------------------
* Description: * Description:
* A stop watch to measure CPU time * A stop watch to measure CPU time