欢迎来到尧图网

客户服务 关于我们

您的位置:首页 > 新闻 > 焦点 > LeetCode 3042. Count Prefix and Suffix Pairs I

LeetCode 3042. Count Prefix and Suffix Pairs I

2025/1/9 17:18:56 来源:https://blog.csdn.net/weixin_42383726/article/details/145004263  浏览:    关键词:LeetCode 3042. Count Prefix and Suffix Pairs I

🔗 https://leetcode.com/problems/count-prefix-and-suffix-pairs-i

题目

  • 一个字符串数组,返回其中有几对,word i 既是 word j 的前缀,也是后缀

思路

  • 模拟,前缀匹配相同的 index,后缀匹配的 index 为 n2 - n1 + i

代码

class Solution {
public:bool check(string& s1, string& s2) {if (s1.size() > s2.size()) return false;bool mark = true;int n1 = s1.size();int n2 = s2.size();for (int i = 0; i < s1.size(); i++) {if (s1[i] != s2[i]) {mark = false;break;}if (s1[i] != s2[n2 - n1 + i]) {mark = false;break;}}return mark;}int countPrefixSuffixPairs(vector<string>& words) {int count = 0;for (int i = 0; i < words.size(); i++) {for (int j = i + 1; j < words.size(); j++) {if (check(words[i], words[j])) count++;}}return count;}
};

版权声明:

本网仅为发布的内容提供存储空间,不对发表、转载的内容提供任何形式的保证。凡本网注明“来源:XXX网络”的作品,均转载自其它媒体,著作权归作者所有,商业转载请联系作者获得授权,非商业转载请注明出处。

我们尊重并感谢每一位作者,均已注明文章来源和作者。如因作品内容、版权或其它问题,请及时与我们联系,联系邮箱:809451989@qq.com,投稿邮箱:809451989@qq.com