【C++题目002】哪些不是STL的collection

Which of the following is not an STL collection?
a) vector
b) list
c) map
d) tree
e) set

当然是tree。前三个都很常用,map和set内部是红黑树。单独的tree在STL中没有。

原文地址:https://www.cnblogs.com/speedmancs/p/2072688.html