首页 > 其他 > 详细

[LeetCode] Contains Duplicate

时间:2015-06-09 11:41:41      阅读:212      评论:0      收藏:0      [点我收藏+]

A classic problem of hash set. The unordered_set of C++ is very suitable for this problem.

The code is as follows and it should be quite self-explanatory.

1     bool containsDuplicate(vector<int>& nums) {
2         unordered_set<int> st;
3         for (int i = 0; i < nums.size(); i++) {
4             if (st.find(nums[i]) != st.end())
5                 return true;
6             st.insert(nums[i]);
7         }
8         return false;
9     }

[LeetCode] Contains Duplicate

原文:http://www.cnblogs.com/jcliBlogger/p/4562866.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!