336回文对(前缀树——困难)

1、题目描述

给定一组 互不相同 的单词, 找出所有不同 的索引对(i, j),使得列表中的两个单词, words[i] + words[j] ,可拼接成回文串。

2、示例

输入:["abcd","dcba","lls","s","sssll"]
输出:[[0,1],[1,0],[3,2],[2,4]] 
解释:可拼接成的回文串为 ["dcbaabcd","abcddcba","slls","llssssll"]

3、题解

基本思想:前缀树,x+y组成回文串,要么x和y中有一部分是回文例如lls+sssll,要么x和y中完全没有回文各占回文一半abcd+dcba。

将words中所有单词存储在前缀树结构中,然后遍历words中每一个单词

  • 如果它的前半部分回文并且后半部分逆序后在前缀树中找到,则(前缀树中找到的单词+该单词)组成回文串lls+sssll
  • 如果它的后半部分回文并且前半部分逆序后在前缀树中找到,则(该单词+前缀树中找到的单词)组成回文串llsss+sll
#include<iostream>
#include<vector>
#include<algorithm>
#include<set>
#include<map>
using namespace std;
class Solution {
public:
    vector<vector<int>> palindromePairs(vector<string>& words) {
        //基本思想:暴力,超时,时间复杂度O(n^2*m)
        vector<vector<int>> res;
        for(int i=0;i<words.size();i++)
        {
            for(int j=i+1;j<words.size();j++)
            {
                if(checkPalindrome(words[i]+words[j]))
                    res.push_back({i,j});
                if(checkPalindrome(words[j]+words[i]))
                    res.push_back({j,i});
            }
        }
        return res;
    }
    bool checkPalindrome(string s)
    {
        int i=0,j=s.size()-1;
        while(i<j)
        {
            if(s[i]!=s[j])
                return false;
            i++;
            j--;
        }
        return true;
    }
};
struct Trie
{
	Trie* child[26];
	int index=-1;
	Trie() {
		for (int i = 0; i < 26; i++)
			child[i] = nullptr;
	}
};
class Solution1 {
public:
    Trie* t = new Trie();
    vector<vector<int>> palindromePairs(vector<string>& words) {
        //基本思想:前缀树,x+y组成回文串,要么x和y中有一部分是回文例如lls+sssll,要么x和y中完全没有回文各占回文一半abcd+dcba
        //将words中所有单词存储在前缀树结构中,然后遍历words中每一个单词
        //如果它的前半部分回文并且后半部分逆序后在前缀树中找到,则(前缀树中找到的单词+该单词)组成回文串lls+sssll
        //如果它的后半部分回文并且前半部分逆序后在前缀树中找到,则(该单词+前缀树中找到的单词)组成回文串llsss+sll
        vector<vector<int>> res;
		for(int i=0;i<words.size();i++)
			insertTrie(words[i],i);
        for(int i=0;i<words.size();i++)
        {
            int len=words[i].size();
            for(int j=0;j<=len;j++)
            {
                //这里注意j!=0,因为j=0和j=len这两种情况重复了
                if(j!=0&&checkPalindrome(words[i],0,j-1))
                {
                    int index=findTrie(words[i],j,len-1);
                    if(index!=-1&&index!=i)
                        res.push_back({index,i});
                }
                if(checkPalindrome(words[i],j,len-1))
                {
                    int index=findTrie(words[i],0,j-1);
                    if(index!=-1&&index!=i)
                        res.push_back({i,index});
                }
            }
        }
        return res;
    }
    void insertTrie(string word,int i)
    {
        //对word单词插入前缀树
        Trie* cur=t;
		for (auto c:word)
		{
			if (cur->child[c-'a'] == nullptr)
				cur->child[c-'a'] = new Trie();
			cur = cur->child[c-'a'];
		}
		cur->index=i;
	}
	int findTrie(string word,int left,int right)
	{
	    //对word中[left,right]的逆序在前缀树中是否查找到
        Trie* cur=t;
        for(int i=right;i>=left;i--)
        {
            if(cur->child[word[i]-'a']==nullptr)
                return -1;
            cur=cur->child[word[i]-'a'];
        }
        return cur->index;
	}
	bool checkPalindrome(string s,int left,int right)
    {
        //检查字符串s的[left,right]范围是否构成回文
        int i=left,j=right;
        while(i<j)
        {
            if(s[i]!=s[j])
                return false;
            i++;
            j--;
        }
        return true;
    }
};
int main()
{
    Solution1 solute;
    vector<string> words{"abcd","dcba","lls","s","sssll"};
    vector<vector<int>> res=solute.palindromePairs(words);
    for_each(res.begin(),res.end(),[](vector<int> v){cout<<v[0]<<" "<<v[1]<<endl;});
    return 0;
}
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值