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.
Python でソートされたリストを保持したい。リストに要素をソート順に挿入します。bisect モジュールを認識しています。ただし、通常の python リストを使用すると、要素を挿入するときにすべての要素が右にシフトすることになります。このパフォーマンスへの影響を避けたいと思います。また、要素が挿入されるたびに sorted() を使用してリストを並べ替えたくもありません。PythonでGuavaの(Java) TreeMultisetに似たデータ構造はありますか?