generated from freudenreichan/info2Praktikum-DobleSpiel
stack.c und h geschrieben, unittests geschrieben und bestanden.
This commit is contained in:
parent
08fbfefa32
commit
41e01c3af3
10
makefile
10
makefile
@ -35,8 +35,14 @@ $(program_obj_filesobj_files): %.o: %.c
|
|||||||
# --------------------------
|
# --------------------------
|
||||||
# Unit Tests
|
# Unit Tests
|
||||||
# --------------------------
|
# --------------------------
|
||||||
unitTests:
|
unitTests: stacktest
|
||||||
echo "needs to be implemented"
|
|
||||||
|
|
||||||
|
test_stack: stacktest.o stack.o
|
||||||
|
$(CC) $(FLAGS) $^ -o stacktest
|
||||||
|
|
||||||
|
test_stack.o: stacktest.c
|
||||||
|
$(CC) -c $(FLAGS) $< -o $@
|
||||||
|
|
||||||
# --------------------------
|
# --------------------------
|
||||||
# Clean
|
# Clean
|
||||||
|
|||||||
27
stack.c
27
stack.c
@ -10,24 +10,43 @@
|
|||||||
// Pushes data as pointer onto the stack.
|
// Pushes data as pointer onto the stack.
|
||||||
StackNode *push(StackNode *stack, void *data)
|
StackNode *push(StackNode *stack, void *data)
|
||||||
{
|
{
|
||||||
|
StackNode *newNode = (StackNode *)malloc(sizeof(StackNode));
|
||||||
|
if (newNode == NULL) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
newNode ->data = data;
|
||||||
|
newNode ->next = stack;
|
||||||
|
return newNode;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Deletes the top element of the stack (latest added element) and releases its memory. (Pointer to data has to be
|
// Deletes the top element of the stack (latest added element) and releases its memory. (Pointer to data has to be
|
||||||
// freed by caller.)
|
// freed by caller.)
|
||||||
StackNode *pop(StackNode *stack)
|
StackNode *pop(StackNode *stack)
|
||||||
{
|
{
|
||||||
|
if(stack == NULL) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
StackNode *next = stack->next;
|
||||||
|
free(stack);
|
||||||
|
return next;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Returns the data of the top element.
|
// Returns the data of the top element.
|
||||||
void *top(StackNode *stack)
|
void *top(StackNode *stack)
|
||||||
{
|
{
|
||||||
|
if(stack == NULL) {
|
||||||
|
return NULL;
|
||||||
|
}
|
||||||
|
return stack->data;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Clears stack and releases all memory.
|
// Clears stack and releases all memory.
|
||||||
void clearStack(StackNode *stack)
|
void clearStack(StackNode *stack)
|
||||||
{
|
{
|
||||||
|
StackNode *temp;
|
||||||
|
while(stack != NULL) {
|
||||||
|
temp = stack;
|
||||||
|
stack = stack->next;
|
||||||
|
free(temp);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
5
stack.h
5
stack.h
@ -8,7 +8,12 @@ The latest element is taken from the stack. */
|
|||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
|
|
||||||
//TODO: passenden Datentyp als struct anlegen
|
//TODO: passenden Datentyp als struct anlegen
|
||||||
|
typedef struct{
|
||||||
|
void *data;
|
||||||
|
struct StackNode *next;
|
||||||
|
|
||||||
|
|
||||||
|
}StackNode;
|
||||||
// Pushes data as pointer onto the stack.
|
// Pushes data as pointer onto the stack.
|
||||||
StackNode *push(StackNode *stack, void *data);
|
StackNode *push(StackNode *stack, void *data);
|
||||||
|
|
||||||
|
|||||||
58
stacktest.c
Normal file
58
stacktest.c
Normal file
@ -0,0 +1,58 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
#include "stack.h"
|
||||||
|
#include <stdlib.h>
|
||||||
|
|
||||||
|
|
||||||
|
//Funktion, um nachzuprüfen, ob Test bestanden wurde
|
||||||
|
void check(char *msg, int expected, int actual){
|
||||||
|
printf("%s: ", msg);
|
||||||
|
printf("Erwartet: %d, Tatsächlich: %d\n", expected, actual);
|
||||||
|
if(expected == actual){
|
||||||
|
printf("Test bestanden\n");
|
||||||
|
}else{
|
||||||
|
printf("Test nicht bestanden\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
||||||
|
//Schnappt sich oberstes Element
|
||||||
|
int getTop(StackNode *stack){
|
||||||
|
void *data = top(stack);
|
||||||
|
return(int)data;
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
//Tests der einzelnen Stackfunktionen
|
||||||
|
int main(){
|
||||||
|
StackNode *stack = NULL;
|
||||||
|
//Test push
|
||||||
|
|
||||||
|
stack = push(stack, (void*)10);
|
||||||
|
check("Nach Push 10", 10, getTop(stack));
|
||||||
|
|
||||||
|
stack = push(stack, (void*)20);
|
||||||
|
check("Nach Push 20", 20, getTop(stack));
|
||||||
|
|
||||||
|
//pop testen
|
||||||
|
stack = pop(stack);
|
||||||
|
check("Nach Pop", 10, getTop(stack));
|
||||||
|
|
||||||
|
//clearStack testen
|
||||||
|
clearStack(stack);
|
||||||
|
stack = NULL;
|
||||||
|
check("Nach ClearStack", 0, getTop(stack));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
Loading…
x
Reference in New Issue
Block a user