cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
General C++ Programming
Finding duplicate in 2D Vector string
Finding duplicate in 2D Vector string
Apr 5, 2013 at 2:01pm UTC
Heartly R
(23)
I want to find that whether the 2d Vector table having duplicate or not. I can see lot of programs for removing duplicates by using unique STL algorithm. Which is the best way to find " is Duplicate or not " for 100,000 Records.
Apr 5, 2013 at 2:18pm UTC
ajh32
(659)
If you want to avoid having duplicate entries in your STL container, then use a container that won't allow duplicates, e.g. std::map
Topic archived. No new replies allowed.