I'm trying to simulate a stack (pushing and poping values into the top of the stack) using structs and dynamic memory allocation in C and I have this struct:
...
#define max 5
typedef struct stack
{
int stk[max];
int top;
}STACK;
...
I successfully simulated the stack, but when it reaches its maximum size (stack is full) I want to change the value of max
in order to keep adding (push) values to the top of the stack. In other words, i just want to reallocate the max value in the stk
field of the struct, if that is possible.
Any suggestion is appreciated.
As @user694733 as pointed out you must use dynamic memory. An other example can be:
Now you can use that function in your program like:
Take care that every
realloc
call have a linear cost and so you cannot use it to add just a constant number of elements: better use a geometric expansion. Take a look to http://en.wikipedia.org/wiki/Dynamic_array as a start point for dynamic array.