需要了解deque

时间:2016-06-09 07:18:23

标签: c++ deque

我不明白d [5]的答案是什么?我试图理解C ++中的列表,但由于某种原因,这个概念逃脱了我。谁能解释为什么C是正确的答案?

The following represents output from the call d.Dump() from the

fsu::Deque<char> object d:

content_[i]: A B C D E F G H I J

i mod 10:    0 1 2 3 4 5 6 7 8 9

                   e       b


 What is the result of the output statement



std::cout << d[5];?

1 个答案:

答案 0 :(得分:2)

如果b代表队列的开头,则向右计数5步,从9跳到0.最后在C处。