Linear Data Structures Flashcards
1
Q
What is the C-struct of a stack?
A
typedef struct Stack { int *array; int top; int size; } Stack;
2
Q
What is the C-struct of a queue?
A
typedef struct Queue { int *array; int back; int front; int size; } Queue;