本文主要是介绍leetcode 2981.找出出现至少三次的最长子特殊字符串(纯哈希表暴力),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
leetcode 2981.找出出现至少三次的最长子特殊字符串(传送门)
class Solution {
public:int maximumLength(string s) {int hash[30][52] = { 0 },len = 1,maxn=0;char last = 'A';for (char ch : s) {if (ch == last) len++;else len = 1;for (int i = len; i > 0; i--) {if(++hash[ch-'a'][i]>=3){if(i>maxn)maxn=i;break;}}last = ch;}return maxn?maxn:-1;}
};
这篇关于leetcode 2981.找出出现至少三次的最长子特殊字符串(纯哈希表暴力)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!