PREV INDEX NEXT

Author: Unknown
Subject: Modifying Deque.h
Date: Wednesday, 18 Mar 2020, 16:48:25

If we chose to modify Deque.h from

typedef struct deque *Deque;

to

typedef struct deque Deque;

so we can have head and tail pointers for the struct

1. are we allowed to do this?
2. if we are how can we check if our deque works since makefile uses the Hwk4 Deque.h file

thank you!
PREV INDEX NEXT