Find all substrings that are palindromes

后端 未结 9 597
伪装坚强ぢ
伪装坚强ぢ 2020-12-07 21:28

If the input is \'abba\' then the possible palindromes are a, b, b, a, bb, abba.
I understand that determining if string is palindrome is easy. It would be like:

相关标签:
9条回答
  • 2020-12-07 21:50

    I tried the following code and its working well for the cases Also it handles individual characters too

    Few of the cases which passed:

    abaaa --> [aba, aaa, b, a, aa] 
    geek  --> [g, e, ee, k] 
    abbaca --> [b, c, a, abba, bb, aca] 
    abaaba -->[aba, b, abaaba, a, baab, aa] 
    abababa -->[aba, babab, b, a, ababa, abababa, bab] 
    forgeeksskeegfor --> [f, g, e, ee, s, r, eksske, geeksskeeg, 
                          o, eeksskee, ss, k, kssk]
    

    Code

    static Set<String> set = new HashSet<String>(); 
    static String DIV = "|";
    
    public static void main(String[] args) {
        String str = "abababa";
        String ext = getExtendedString(str);
    
        // will check for even length palindromes
        for(int i=2; i<ext.length()-1; i+=2) {
            addPalindromes(i, 1, ext);
        }
        // will check for odd length palindromes including individual characters
        for(int i=1; i<=ext.length()-2; i+=2) {
            addPalindromes(i, 0, ext);
        }
        System.out.println(set);
    }
    
    /*
     * Generates extended string, with dividors applied
     * eg: input = abca
     * output = |a|b|c|a|
     */
    static String getExtendedString(String str) {
        StringBuilder builder = new StringBuilder();
        builder.append(DIV);
        for(int i=0; i< str.length(); i++) {
            builder.append(str.charAt(i));
            builder.append(DIV);
    
        }
        String ext = builder.toString();
        return ext;
    }
    
    /*
     * Recursive matcher
     * If match is found for palindrome ie char[mid-offset] = char[mid+ offset]
     * Calculate further with offset+=2
     * 
     * 
     */
    static void addPalindromes(int mid, int offset, String ext) {
        // boundary checks
        if(mid - offset <0 || mid + offset > ext.length()-1) {
            return;
        }
        if (ext.charAt(mid-offset) == ext.charAt(mid+offset)) {
            set.add(ext.substring(mid-offset, mid+offset+1).replace(DIV, ""));
            addPalindromes(mid, offset+2, ext);
        }
    }
    

    Hope its fine

    0 讨论(0)
  • 2020-12-07 21:53

    I just came up with my own logic which helps to solve this problem. Happy coding.. :-)

    System.out.println("Finding all palindromes in a given string : ");
            subPal("abcacbbbca");
    
    private static void subPal(String str) {
            String s1 = "";
            int N = str.length(), count = 0;
            Set<String> palindromeArray = new HashSet<String>();
            System.out.println("Given string : " + str);
            System.out.println("******** Ignoring single character as substring palindrome");
            for (int i = 2; i <= N; i++) {
                for (int j = 0; j <= N; j++) {
                    int k = i + j - 1;
                    if (k >= N)
                        continue;
                    s1 = str.substring(j, i + j);
                    if (s1.equals(new StringBuilder(s1).reverse().toString())) {
                        palindromeArray.add(s1);
                    }
                }
    
            }
            System.out.println(palindromeArray);
            for (String s : palindromeArray)
                System.out.println(s + " - is a palindrome string.");
            System.out.println("The no.of substring that are palindrome : "
                    + palindromeArray.size());
        }
    
    Output:-
    Finding all palindromes in a given string : 
    Given string : abcacbbbca
    ******** Ignoring single character as substring palindrome ********
    [cac, acbbbca, cbbbc, bb, bcacb, bbb]
    cac - is a palindrome string.
    acbbbca - is a palindrome string.
    cbbbc - is a palindrome string.
    bb - is a palindrome string.
    bcacb - is a palindrome string.
    bbb - is a palindrome string.
    The no.of substring that are palindrome : 6
    
    0 讨论(0)
  • 2020-12-07 22:02

    Perhaps you could iterate across potential middle character (odd length palindromes) and middle points between characters (even length palindromes) and extend each until you cannot get any further (next left and right characters don't match).

    That would save a lot of computation when there are no many palidromes in the string. In such case the cost would be O(n) for sparse palidrome strings.

    For palindrome dense inputs it would be O(n^2) as each position cannot be extended more than the length of the array / 2. Obviously this is even less towards the ends of the array.

      public Set<String> palindromes(final String input) {
    
         final Set<String> result = new HashSet<>();
    
         for (int i = 0; i < input.length(); i++) {
             // expanding even length palindromes:
             expandPalindromes(result,input,i,i+1);
             // expanding odd length palindromes:
             expandPalindromes(result,input,i,i);
         } 
         return result;
      }
    
      public void expandPalindromes(final Set<String> result, final String s, int i, int j) {
          while (i >= 0 && j < s.length() && s.charAt(i) == s.charAt(j)) {
                result.add(s.substring(i,j+1));
                i--; j++;
          }
      }
    
    0 讨论(0)
提交回复
热议问题