Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我意识到 c++ list 正在对条目进行排序。你知道C++中是否定义了无序列表吗?有什么例子吗?
谢谢
我意识到 c++ list 正在对条目进行排序。
这实际上是不正确的。
std::list不执行任何类型的排序,除了保留您在添加项目时指定的顺序。
std::list
请注意,这std::vector也不会重新排序,并且在许多情况下更合适,如果您只需要可以根据需要存储和检索的值的集合。
std::vector