C/C++ What does the space above 'E' represent in a C++ deque diagram?

  • Thread starter Thread starter GeorgeCostanz
  • Start date Start date
  • Tags Tags
    C++ Diagram
AI Thread Summary
The discussion centers on a C++ deque diagram that inaccurately represents the state of the deque after a series of operations. It highlights that the term "capacity" is misused, as deques have a size rather than a capacity, which is a characteristic of vectors. The diagram incorrectly shows three empty slots instead of the two that should result from two pop_front operations. Additionally, the order of the items in the deque is wrong; it should reflect the last pushed elements first. The conversation concludes with a reference to a homework solution that contained these inaccuracies.
GeorgeCostanz
Messages
29
Reaction score
0
I have a minor question about this diagram I'm hoping someone can clear up for me.

The deque has initial capacity 4. The following operations are performed.

push_back(1)
push_back(2)
push_back(3)

pop_front()
pop_front()

push_back(4)

push_front(5)
push_front(6)
push_front(7)

final answer:
OPmbBeP.png


I'm just wondering what the space above the letter 'E' is supposed to signify. I thought there were only 2 empty slots in the deque for the 2 pop_front operations at initial capacity 4.
 
Technology news on Phys.org
There are a number of things wrong with this question and the diagram. One is the word "capacity". Vectors have a capacity. Deques don't. Vectors and deques have a size, the number of elements currently in the container. Capacity is something different. I'm assuming that size was meant here: There are four items in the deque prior to those operations.

The second thing wrong is those three holes in the middle of the diagram. As you noted, that should be two holes. Those two pop_front() calls will remove the first two items from the deque, and since all operations up until then were on the back, the removed items are from that initial content of four items.

The third thing that's wrong: What happened to the 1 and the 2?

Finally, the order of the first three items is incorrect. It should be 7,6,5 rather than 5,6,7.
Code:
#include <deque>
#include <iostream>

int main () {
   std::deque<int> d(4,42);
   d.push_back(1);
   d.push_back(2);
   d.push_back(3);

   d.pop_front();
   d.pop_front();

   d.push_back(4);

   d.push_front(5);
   d.push_front(6);
   d.push_front(7);

   for (std::deque<int>::iterator iter = d.begin(); iter < d.end(); ++iter) {
      std::cout << *iter << " ";
   }
   std::cout << "\n";
}

The above prints 7 6 5 42 42 1 2 3 4.
 
  • Like
Likes 1 person
okay thanks. i found it on a random HW solution set on the internet.
 
Dear Peeps I have posted a few questions about programing on this sectio of the PF forum. I want to ask you veterans how you folks learn program in assembly and about computer architecture for the x86 family. In addition to finish learning C, I am also reading the book From bits to Gates to C and Beyond. In the book, it uses the mini LC3 assembly language. I also have books on assembly programming and computer architecture. The few famous ones i have are Computer Organization and...
I have a quick questions. I am going through a book on C programming on my own. Afterwards, I plan to go through something call data structures and algorithms on my own also in C. I also need to learn C++, Matlab and for personal interest Haskell. For the two topic of data structures and algorithms, I understand there are standard ones across all programming languages. After learning it through C, what would be the biggest issue when trying to implement the same data...
Back
Top