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()を使用すると、2 つの std::list を一定時間で連結できます。