Initial commit

This commit is contained in:
github-classroom[bot] 2025-04-28 22:09:20 +00:00 committed by GitHub
commit 5fffa66d6c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
86 changed files with 8847 additions and 0 deletions

26
array_backed_list.h Normal file
View file

@ -0,0 +1,26 @@
/*----------------------------------------------------------
* HTBLA-Leonding / Class: <your class>
* ---------------------------------------------------------
* Exercise Number: S06
* Title: Array backed List
* Author: S. Schraml
* ----------------------------------------------------------
* Description:
* The declaration of an abstract data type
* based on an implementation of an array backed list.
* ----------------------------------------------------------
*/
#ifndef ___ARRAY_BACKED_LIST__H
#define ___ARRAY_BACKED_LIST__H
#include "list.h"
/** This header file maps only the common 'list' interface
* into naming conventions for doubly linked list implementation.
*
* It does (for now) not extend or alter the function prototypes of the
* common interface.
*/
#endif