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.
我需要有不重复的元素数组。这意味着如果元素在列表中,则将从数组中跳过新值。在这种情况下是否有任何可能有用的标准类型(矢量、地图等)?
您可以使用set来避免重复。
哈希表可以做到这一点。您有一些选择,包括标准的和特定于 MS 的。
首先看一下 std::map :
http://www.cplusplus.com/reference/map/map/