Author: Stan Eisenstat
Subject: Re: [Cs223] deque vs. Deque structure
Date: Tuesday, 31 Mar 2020, 21:00:10
> Message Posted By: Unknown
>
> What is the difference between deque and Deque in Deque.h? When I am
> trying to compile my code, I get an unknown type name error when using
> deque.
As I posted earlier:
Date: 27 Mar 2020 21:34:19 -0400 (Fri)
Subject: Re: [Cs223] Deque vs deque
> Message Posted By: Unknown
>
> I am a bit lost trying to understand the difference between Deque and
> deque. ...
"deque" is the name of a struct; "Deque" is the name of
a data type that is a pointer to a struct deque. You
may want to review the Queue.txt handout, which is also
available on the class web site
https://zoo.cs.yale.edu/classes/cs223/doc/Queue.txt
...
I cannot diagnose why your code is getting an error without
seeing and compiling it.
--Stan-
PREV
INDEX
NEXT