Compare commits

..

10 Commits

Author SHA1 Message Date
regis37
7a457bd529 IDEA-Dateien ignorieren 2025-11-27 00:06:26 +01:00
regis37
2a095975b8 Unittest is done 2025-11-26 23:54:44 +01:00
regis37
3abe1477ac function clearStack is done 2025-11-26 23:01:16 +01:00
regis37
5deaf21a61 function pop is done 2025-11-26 22:56:13 +01:00
regis37
69f44a5aa0 function top is done 2025-11-26 22:54:27 +01:00
regis37
bc6ec040b7 function push is done 2025-11-26 22:52:32 +01:00
regis37
04c1328230 stack.h--fixed 2025-11-26 22:13:05 +01:00
regis37
b5e67e8368 passenden Datentyp als struct angelegt 2025-11-26 22:07:00 +01:00
regis37
2abc429b82 Update 2025-11-26 21:51:23 +01:00
regis37
49202e677c noch keine Änderung soweit 2025-11-25 15:07:55 +01:00
5 changed files with 74 additions and 2 deletions

40
test_stack.c Normal file
View File

@ -0,0 +1,40 @@
#include <stdio.h>
#include <stdlib.h>
#include "stack.h"
int main()
{
StackNode *stack = NULL;
// Test 1: Push
int *a = malloc(sizeof(int)); // erstellt Daten
*a = 10;
int *b = malloc(sizeof(int));
*b = 20;
int *c = malloc(sizeof(int));
*c = 30;
stack = push(stack, a); //legt ein Element oben auf den Stack
stack = push(stack, b);
stack = push(stack, c);
// Test 2: Top
printf("Top (soll 30 sein): %d\n", *((int*)top(stack))); // Zeigt den Top vom Stack
// Test 3: Pop
stack = pop(stack); // entfernt 30
free(c);
printf("Top nach pop (soll 20 sein): %d\n", *(int*)top(stack)); // // Zeigt den Top vom Stack
// Test 4: Nochmal pop
stack = pop(stack); // entfernt 20
free(b);
printf("Top nach pop (soll 10 sein): %d\n", *(int*)top(stack));
// Test 5: clearStack
clearStack(stack); // gibt den gesamten Speicher frei
return 0;
}

BIN
doble_initial.exe Normal file

Binary file not shown.

View File

@ -1 +1,8 @@
the_king;43984
Regis;18924
player_name;9929
Kamto;7946
player_name;5987
Warren;4986
player1;3999
player_name;2991

23
stack.c
View File

@ -10,24 +10,43 @@
// Pushes data as pointer onto the stack.
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
// freed by caller.)
StackNode *pop(StackNode *stack)
{
if (stack == NULL)
return NULL;
StackNode *newTop = stack->next;
free(stack);
return newTop;
}
// 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)
{
StackNode *current = stack;
while (current != NULL)
{
StackNode *next = current->next;
free(current);
current = next;
}
}

View File

@ -9,6 +9,12 @@ The latest element is taken from the stack. */
//TODO: passenden Datentyp als struct anlegen
typedef struct StackNode {
void *data;
struct StackNode *next;
} StackNode;
// Pushes data as pointer onto the stack.
StackNode *push(StackNode *stack, void *data);