485. Max Consecutive Ones

2018-03-22  本文已影响3人  安东可

485
[思路]:

寻找0.1序列中连续为1的子序列的长度;

    int findMaxConsecutiveOnes(vector<int>& nums) {
        int maxc = 0, cnt = 0;
        for(auto &num:nums){
            if(num == 1) cnt++;
            else cnt=0;
            maxc = max(maxc, cnt);
        }
        return maxc;
    }
上一篇下一篇

猜你喜欢

热点阅读