for (auto x : nums)

本文介绍了一种在整数数组中查找重复元素的算法。通过使用二分查找思想,算法能够在O(nlogn)的时间复杂度内找到重复的数字。核心部分是遍历数组并计数位于中间范围内的元素数量,若数量大于该范围应有的元素数量,则重复数字存在于该范围内。
摘要由CSDN通过智能技术生成
class Solution {
public:
    int findDuplicate(vector<int>& nums) {
        int n = nums.size() - 1;
        int l = 1, r = n;
        while (l < r){
        	int mid = l + r >> 1;
        	int cnt = 0;
        	for (auto x : nums)
        		if (x >= l && x <= mid)
        			cnt++;
        	if (cnt > mid - l + 1) r = mid;
        	else l = mid + 1;
        }
        return r;
    }
};

上述代码中

for (auto x : nums)

作用就是迭代容器中所有的元素,每一个元素的临时名字就是x,等同于下边代码

for (vector<int>::iterator iter = nums.begin(); iter != nums.end(); iter++)

 

评论 5
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值