码迷,mamicode.com
首页 > 其他好文 > 详细

467 Unique Substrings in Wraparound String 封装字符串中的独特子字符串

时间:2018-04-21 19:40:13      阅读:137      评论:0      收藏:0      [点我收藏+]

标签:class   substring   max   字符   else   tor   logs   problems   ||   

详见:https://leetcode.com/problems/unique-substrings-in-wraparound-string/description/

C++:

class Solution {
public:
    int findSubstringInWraproundString(string p) 
    {
        vector<int> cnt(26, 0);
        int len = 0;
        for (int i = 0; i < p.size(); ++i) 
        {
            if (i > 0 && (p[i] == p[i - 1] + 1 || p[i - 1] - p[i] == 25)) 
            {
                ++len;
            } 
            else
            {
                len = 1;
            }
            cnt[p[i] - ‘a‘] = max(cnt[p[i] - ‘a‘], len);
        }
        return accumulate(cnt.begin(), cnt.end(), 0);
    }
};

 参考:https://www.cnblogs.com/grandyang/p/6143071.html

467 Unique Substrings in Wraparound String 封装字符串中的独特子字符串

标签:class   substring   max   字符   else   tor   logs   problems   ||   

原文地址:https://www.cnblogs.com/xidian2014/p/8902548.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!