Initial commit
This commit is contained in:
commit
87dcb960bf
67 changed files with 6733 additions and 0 deletions
20
toh_board.c
Normal file
20
toh_board.c
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
/*----------------------------------------------------------
|
||||
* HTBLA-Leonding / Class: <your class>
|
||||
* ---------------------------------------------------------
|
||||
* Exercise Number: 09
|
||||
* Title: Tower of Hanoi Disk ADT implementation
|
||||
* Author: */<your name>/*
|
||||
* ----------------------------------------------------------
|
||||
* Description:
|
||||
* Implementation of toh_board.h.
|
||||
* ----------------------------------------------------------
|
||||
*/
|
||||
|
||||
#include "toh_board.h"
|
||||
|
||||
#include "config.h"
|
||||
#include "toh_disk.h"
|
||||
|
||||
/** Abstraction of a rod type */
|
||||
/* Hint: Define a type 'Rod' as a pointer to Disk
|
||||
for usage in exchange with Disk array */
|
||||
Loading…
Add table
Add a link
Reference in a new issue