您的位置:首页 > 大数据 > 人工智能

LeetCode--Contains Duplicate

2015-11-03 11:23 429 查看
题目:

Given an array of integers, find if the array contains any duplicates. Your function should return true if any value appears at least
twice in the array, and it should return false if every element is distinct.

代码:

bool containsDuplicate(vector<int>& nums) {
unordered_map<int, bool> a;
for(int i = 0; i < nums.size(); ++i)
{
if(!a.count(nums[i]))
{
a[nums[i]] = true;
}
else
{
return true;
}
}
return false;
}


运用unordered_map,将每个数一次加入map中,如果他出现过,直接返回true,遍历完都没出现则返回false
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: