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;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the C-struct of a queue?

A
typedef struct Queue {
int *array;
int back;
int front;
int size;
} Queue;
How well did you know this?
1
Not at all
2
3
4
5
Perfectly