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.
是否有一种数据结构,例如std::list允许将一个列表 O(1) 连接到另一个列表的末尾?即列表A 中的最后一项链接到列表B 的第一项?
std::list
是的,std::list::splice()允许您在恒定时间内连接两个 std::list。