forked from fishercoder1534/Leetcode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPalindromePairs.java
48 lines (41 loc) · 1.63 KB
/
PalindromePairs.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package com.fishercoder.solutions;
import java.util.*;
/**
* Given a list of unique words, find all pairs of distinct indices (i, j) in the given list, so that the concatenation of the two words, i.e. words[i] + words[j] is a palindrome.
Example 1:
Given words = ["bat", "tab", "cat"]
Return [[0, 1], [1, 0]]
The palindromes are ["battab", "tabbat"]
Example 2:
Given words = ["abcd", "dcba", "lls", "s", "sssll"]
Return [[0, 1], [1, 0], [3, 2], [2, 4]]
The palindromes are ["dcbaabcd", "abcddcba", "slls", "llssssll"]
*/
public class PalindromePairs {
public List<List<Integer>> palindromePairs(String[] words) {
List<List<Integer>> pairs = new ArrayList<List<Integer>>();
Map<String, Integer> map = new HashMap<String, Integer>();
for(int i = 0; i < words.length; i++){
map.put(words[i], i);
}
for(int i = 0; i < words.length; i++){
int l = 0, r = 0;
while(l <= r){
String s = words[i].substring(l, r);
Integer j = map.get(new StringBuilder(s).reverse().toString());
if(j != null && j != i && isPalindrome(words[i].substring(l == 0 ? r : 0, l == 0 ? words[i].length() : l))){
pairs.add(Arrays.asList(l == 0 ? new Integer[]{i, j} : new Integer[]{j, i}));
}
if(r < words[i].length()) r++;
else l++;
}
}
return pairs;
}
private boolean isPalindrome(String s) {
for(int i = 0; i < s.length()/2; i++){
if(s.charAt(i) != s.charAt(s.length()-1-i)) return false;
}
return true;
}
}