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.
ソートされた一連の構造を保存する必要があります。ベクトルでそれを行う最良の方法は何ですか? これにポインターを使用するか、コピーを作成する必要がありますか?
struct myStruct { int i; string str; //whatever... };
その後:
vector<myStruct> v;
また
vector<myStruct*> v;
前もって感謝します。