Thomas Rauh Desktop 8ef242ae9b stack Test fertig
2025-11-22 16:24:01 +01:00

53 lines
1.2 KiB
C

#include <stdlib.h>
#include "stack.h"
//TODO: grundlegende Stackfunktionen implementieren:
/* * `push`: legt ein Element oben auf den Stack,
* `pop`: entfernt das oberste Element,
* `top`: liefert das oberste Element zurück,
* `clearStack`: gibt den gesamten Speicher frei. */
// Pushes data as pointer onto the stack.
StackNode *push(StackNode *stack, void *data)
{
StackNode *new=malloc(sizeof(StackNode));
if(new ==NULL){
return new;
}
new->data = data;
new->dannach = stack;
return new;
}
// Deletes the top element of the stack (latest added element) and releases its memory. (Pointer to data has to be
// freed by caller.)
StackNode *pop(StackNode *stack)
{
if(stack == NULL){
return NULL;
}
StackNode *new;
new = stack->dannach;
free(stack);
return new;
}
// Returns the data of the top element.
void *top(StackNode *stack)
{
if(stack == NULL){
return NULL;
}
return stack->data;
}
// Clears stack and releases all memory.
void clearStack(StackNode *stack)
{
while (stack != NULL) {
StackNode *next = stack->dannach;
free(stack);
stack = next;
}
}