for (auto x : nums)

Posted lihello

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了for (auto x : nums)相关的知识,希望对你有一定的参考价值。

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++)

以上是关于for (auto x : nums)的主要内容,如果未能解决你的问题,请参考以下文章

AUTO在C语言中的用法,下面小程序NUM编译结果是怎样的,该怎样理解?

auto js for循环怎么分别运行两个不同的时间间隔的两个不同坐标的点击循环?

C++11使用auto关键字进行基于范围的for循环,引用符号&的作用

for循环的新用法和auto关键字

简化代码,提高效率:C++ auto关键字的魅力

TRIGGER AUTO_NUM_GEN 已编译警告:执行完成但有警告