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.
CStringArray の配列要素のリストが与えられた場合:
dog dog cat cat cat cat mice
CStringArray 内で共通の要素 (犬、猫、マウス) を見つけたいと思います。
配列をソートして同様の要素をすべてまとめてから、ステップスルーし、要素が変更されるたびにそれを出力にコピーします。
配列を反復処理し、要素の値をハッシュ キーとして使用し、キーと値のペア (実際の値はここでは関係ありません) をハッシュ テーブルに設定します。
次に、結果としてすべてのハッシュ キーのセットを取得します。
たぶんstd::set、std::unique同様に考慮する必要があります。
std::set
std::unique