LeetCode 522 最长特殊序列II[枚举 双指针] HERODING的LeetCode之路
Posted HERODING23
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode 522 最长特殊序列II[枚举 双指针] HERODING的LeetCode之路相关的知识,希望对你有一定的参考价值。
解题思路:
解题的关键在于特殊序列的长度除了-1,最小也是最短序列的长度,所以根本不需要考虑不同序列中子序列之间的匹配情况,这是因为最长序列(即序列本身)就是最特殊子序列。遍历所有的序列对,判断是否能匹配,不能匹配,更新最长序列长度,最后返回,代码如下:
class Solution
public:
int findLUSlength(vector<string>& strs)
int n = strs.size();
int ans = -1;
for(int i = 0; i < n; i ++)
bool check = true;
for(int j = 0; j < n; j ++)
if(i != j && judge(strs[i], strs[j]))
check = false;
break;
if(check)
ans = max(ans, static_cast<int>(strs[i].size()));
return ans;
bool judge(string s1, string s2)
int n1 = s1.size(), n2 = s2.size();
// 长度相同比较是否相同
if(n1 == n2) return s1 == s2;
int index1 = 0, index2 = 0;
// 长度不同比较是否子串
while(index1 < n1 && index2 < n2)
if(s1[index1] == s2[index2])
index1 ++;
index2 ++;
return index1 == n1;
;
以上是关于LeetCode 522 最长特殊序列II[枚举 双指针] HERODING的LeetCode之路的主要内容,如果未能解决你的问题,请参考以下文章
[leetcode] 522. 最长特殊序列 II 暴力 + 双指针