½º ÅÃ(Stack)

¡á ½ºÅÃÀÇ ¹è¿­ ±¸Çö

[ ½ºÅà ¼±¾ð ]

struct stack_record
{
     unsigned int capacity;
     int top;
     int *array;
};
type struct stack_record *STACK;
#define EMPTY_TOS(-1)