Datentyp fuer Strukturvariable data auf void geandert

This commit is contained in:
silvana884 2025-12-10 10:04:13 +01:00
parent c860a197ee
commit b3c9fec7ba
2 changed files with 4 additions and 3 deletions

View File

@ -19,7 +19,7 @@
// Uses your binary search tree implementation to check for duplicates while generating numbers.
unsigned int *createNumbers(unsigned int len)
{
if (len < 2)
if (len < 2)
return NULL;
srand(time(NULL));

View File

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