Initial commit
This commit is contained in:
commit
e6e6f4ae94
69 changed files with 8332 additions and 0 deletions
26
advanced_singly_linked_list.h
Normal file
26
advanced_singly_linked_list.h
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
/*----------------------------------------------------------
|
||||
* HTBLA-Leonding / Class: <your class>
|
||||
* ---------------------------------------------------------
|
||||
* Exercise Number: S03
|
||||
* Title: Advanced Singly Linked List
|
||||
* Author: S. Schraml
|
||||
* ----------------------------------------------------------
|
||||
* Description:
|
||||
* The declaration of a linked list abstract data type
|
||||
* based on an implementation of an advanced singly linked list.
|
||||
* ----------------------------------------------------------
|
||||
*/
|
||||
|
||||
#ifndef ___ADVANCED_SINGLY_LINKED_LIST__H
|
||||
#define ___ADVANCED_SINGLY_LINKED_LIST__H
|
||||
|
||||
#include "list.h"
|
||||
|
||||
/** This header file maps only the common 'list' interface
|
||||
* into naming conventions for simple singly linked list implementation.
|
||||
*
|
||||
* It does (for now) not extend or alter the function prototypes of the
|
||||
* common interface.
|
||||
*/
|
||||
|
||||
#endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue