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

 

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

相关文章: