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.
 
Thread 'Is this public key encryption?'
I've tried to intuit public key encryption but never quite managed. But this seems to wrap it up in a bow. This seems to be a very elegant way of transmitting a message publicly that only the sender and receiver can decipher. Is this how PKE works? No, it cant be. In the above case, the requester knows the target's "secret" key - because they have his ID, and therefore knows his birthdate.
Back
Top