PREV INDEX NEXT

Author: Unknown
Subject: Headless vs. Headed Deque?
Date: Wednesday, 18 Mar 2020, 23:46:23

What are the benefits of implementing the Deque as headless (which I think means using "Deque d" as a pointer to struct deque - is that correct?) vs. headed (which would mean the struct deque would have an array of type Stack [where Stack is a pointer to struct stack] of size 2 as a field, is that right?)? 

Thank you!
PREV INDEX NEXT