当前位置:网站首页>336. Palindromic Pairs
336. Palindromic Pairs
2022-07-29 21:38:00 【"We want to brush KouTi】
前言
给定一组 互不相同 的单词, 找出所有 不同 的索引对 (i, j),使得列表中的两个单词, words[i] + words[j] ,可拼接成回文串.
示例 1:
输入:words = [“abcd”,“dcba”,“lls”,“s”,“sssll”]
输出:[[0,1],[1,0],[3,2],[2,4]]
解释:可拼接成的回文串为 [“dcbaabcd”,“abcddcba”,“slls”,“llssssll”]
来源:力扣(LeetCode)
链接:https://leetcode.cn/problems/palindrome-pairs
著作权归领扣网络所有.商业转载请联系官方授权,非商业转载请注明出处.
解题思路
raw string intohash表
找前缀
找后缀
So try all cases where the prefix is a palindrome-遍,If the suffix is a palindrome, try it again

边界
In the case of a palindrome as a whole, empty strings are spelled before and after
own reverse order
代码
class Solution {
public static List<List<Integer>> palindromePairs(String[] words) {
HashMap<String, Integer> wordset = new HashMap<>();
for (int i = 0; i < words.length; i++) {
wordset.put(words[i], i);
}
List<List<Integer>> res = new ArrayList<>();
//{ [6,23] 、 [7,13] }
for (int i = 0; i < words.length; i++) {
// i words[i]
// findAll(字符串,在i位置,wordset) 返回所有生成的结果返回
res.addAll(findAll(words[i], i, wordset));
}
return res;
}
public static List<List<Integer>> findAll(String word, int index, HashMap<String, Integer> words) {
List<List<Integer>> res = new ArrayList<>();
String reverse = reverse(word);
Integer rest = words.get("");
if (rest != null && rest != index && word.equals(reverse)) {
addRecord(res, rest, index);
addRecord(res, index, rest);
}
int[] rs = manacherss(word);
int mid = rs.length >> 1;
for (int i = 1; i < mid; i++) {
if (i - rs[i] == -1) {
rest = words.get(reverse.substring(0, mid - i));
if (rest != null && rest != index) {
addRecord(res, rest, index);
}
}
}
for (int i = mid + 1; i < rs.length; i++) {
if (i + rs[i] == rs.length) {
rest = words.get(reverse.substring((mid << 1) - i));
if (rest != null && rest != index) {
addRecord(res, index, rest);
}
}
}
return res;
}
public static void addRecord(List<List<Integer>> res, int left, int right) {
List<Integer> newr = new ArrayList<>();
newr.add(left);
newr.add(right);
res.add(newr);
}
public static int[] manacherss(String word) {
char[] mchs = manachercs(word);
int[] rs = new int[mchs.length];
int center = -1;
int pr = -1;
for (int i = 0; i != mchs.length; i++) {
rs[i] = pr > i ? Math.min(rs[(center << 1) - i], pr - i) : 1;
while (i + rs[i] < mchs.length && i - rs[i] > -1) {
if (mchs[i + rs[i]] != mchs[i - rs[i]]) {
break;
}
rs[i]++;
}
if (i + rs[i] > pr) {
pr = i + rs[i];
center = i;
}
}
return rs;
}
public static char[] manachercs(String word) {
char[] chs = word.toCharArray();
char[] mchs = new char[chs.length * 2 + 1];
int index = 0;
for (int i = 0; i != mchs.length; i++) {
mchs[i] = (i & 1) == 0 ? '#' : chs[index++];
}
return mchs;
}
public static String reverse(String str) {
char[] chs = str.toCharArray();
int l = 0;
int r = chs.length - 1;
while (l < r) {
char tmp = chs[l];
chs[l++] = chs[r];
chs[r--] = tmp;
}
return String.valueOf(chs);
}
}
边栏推荐
- SAG1-MIC8复合DNA基因疫苗|新型脂质-HAP-DNA复合体|实验要求
- MySQL数据查询 - 联合查询
- 关于安装软件时x86 ,x64,x86_64,ARM 64, ARM 32 的选择
- Durable rules (persistent rules engine) learning notes
- 双功能RGD-TAT修饰DNA纳米胶束|聚苯胺纳米线修饰DNA(PAINW/DNA)
- OneNote tutorial, how to take notes in OneNote?
- 干货!联邦学习中的合作均衡
- offsetwidth111[通俗易懂]
- Break the rules!MongoDB introduces SQL?
- es6语法使用默认参数和解构
猜你喜欢

干货!联邦学习中的合作均衡

荧光量子点修饰siRNA-QDs|纳米金修饰siRNA-Au(RNA修饰方式方法)

conda virtual environment | install and list problems

The difference between analog, digital and switching

剑指 Offer II 097. 子序列的数目

探索创客教育在线管理实施体系

第二好PyTorch新手课程;论文写作指南;使用µGo语言开发迷你编译器;超高效使用Transformer的扩展库;前沿论文 | ShowMeAI资讯日报

MySQL数据查询 - 简单查询

诺氟沙星-DNA复合物|半乳糖化脂质体-聚阳离子-DNA复合物|注意事项

QT安装、创建项目与调试,在VS中的使用:手把手教程
随机推荐
高通WLAN框架学习(31)-- Power save
微博账号奇葩逻辑产品设计
ALBERT: A Lite BERT for Self-supervised Learning of Language Representations
JUC Concurrent Programming Basics AQS
人社部公布“数据库运行管理员”成新职业,OceanBase参与制定职业标准
回归——岭回归
Cooler Navigation helps you shop easily in shopping malls without confusion
RedisJson 横空出世!
用 Array.every & Array.some 匹配全部/部分内容 es6
SAP ABAP OData 服务 Data Provider Class 的 GET_ENTITYSET 方法实现指南试读版
双功能RGD-TAT修饰DNA纳米胶束|聚苯胺纳米线修饰DNA(PAINW/DNA)
Internship: use easypoi to import and export excel table data
MySQL - Design game user information table
Hyaluronic acid-siRNA透明质酸修饰核糖核酸|peptide–siRNA 多肽偶连RNA/DNA核酸(齐岳PNA修饰物)
internship:利用easypoi将excel表数据导入导出
R语言对airbnb数据nlp文本挖掘、地理、词云可视化、回归GAM模型、交叉验证分析
【无标题】
OneNote tutorial, how to take notes in OneNote?
conda虚拟环境 | install 与 list 问题
7 行代码搞崩溃 B 站,原因令人唏嘘!