User Tools

Site Tools


notes:fall2024:projects:cgfx

This is an old revision of the document!


CGF0

stack API

STACK STRUCT

struct Stack
{
    Node *top;
    List *data;
    int   size;
};

MKSTACK

Stack *mkstack (int);

The guts of your mkstack function should be relatively simple, including but not limited to:

  • Allocate the appropriate memory
  • Assign myStack→data to be your list of choosing
  • Assign myStack→top to be one end of your list
  • Assign the appropriate value to myStack→size

RMSTACK

Stack *rmstack (Stack *);

Much like rmlist from previous adventures.
You may want to run a few functions to handle the underlying list prior to handling the stack, as in this case the stack is built upon the list.
We don't want a list if we don't want a stack

POP

Stack *pop (Stack *, Node **);

As stacks are always manipulated from the top you'll want:

  • obtain myStack→top
  • re-assign myStack→top

So long as your stack top isn't NULL that is

PUSH

Stack *push (Stack *, Node *);

The act of pushing to a stack is placing whatever thing you have back to the top of the stack.
Whether you need to use insert() or append() as long as it is appropriately adding to the top of your stack you'll be fine
Of course reassign myStack→top to your new top.

notes/fall2024/projects/cgfx.1728355247.txt.gz · Last modified: 2024/10/08 02:40 by cburling