Compare commits
10 Commits
c325131503
...
7a457bd529
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
7a457bd529 | ||
|
|
2a095975b8 | ||
|
|
3abe1477ac | ||
|
|
5deaf21a61 | ||
|
|
69f44a5aa0 | ||
|
|
bc6ec040b7 | ||
|
|
04c1328230 | ||
|
|
b5e67e8368 | ||
|
|
2abc429b82 | ||
|
|
49202e677c |
40
test_stack.c
Normal file
40
test_stack.c
Normal 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
BIN
doble_initial.exe
Normal file
Binary file not shown.
@ -1 +1,8 @@
|
|||||||
|
the_king;43984
|
||||||
|
Regis;18924
|
||||||
|
player_name;9929
|
||||||
|
Kamto;7946
|
||||||
|
player_name;5987
|
||||||
|
Warren;4986
|
||||||
player1;3999
|
player1;3999
|
||||||
|
player_name;2991
|
||||||
|
|||||||
23
stack.c
23
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 *newTop = stack->next;
|
||||||
|
free(stack);
|
||||||
|
return newTop;
|
||||||
}
|
}
|
||||||
|
|
||||||
// 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 *current = stack;
|
||||||
|
|
||||||
|
while (current != NULL)
|
||||||
|
{
|
||||||
|
StackNode *next = current->next;
|
||||||
|
free(current);
|
||||||
|
current = next;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
6
stack.h
6
stack.h
@ -9,6 +9,12 @@ The latest element is taken from the stack. */
|
|||||||
|
|
||||||
//TODO: passenden Datentyp als struct anlegen
|
//TODO: passenden Datentyp als struct anlegen
|
||||||
|
|
||||||
|
|
||||||
|
typedef struct StackNode {
|
||||||
|
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);
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user