Leetcode:214. Shortest Palindrome

本文介绍了一种巧妙的解决LeetCode 214题“最短回文串”的方法。通过递归地找到字符串前缀和后缀的回文特性,构造出最短的回文字符串。

Leetcode:214. Shortest Palindrome

 

解法一:很奇妙的解法:https://www.programcreek.com/2014/06/leetcode-shortest-palindrome-java/

public String shortestPalindrome(String s) {
        int i = 0;
        int j = s.length() - 1;
        while (j >= 0) {
            if (s.charAt(i) == s.charAt(j)) {
                i++;
            }
            j--;
        }

        if(i==s.length()){     //递归调用的终止条件
            return s;
        }
        String suffix = s.substring(i);
        String prefixString = new StringBuffer(suffix).reverse().toString();
        String mid = shortestPalindrome(s.substring(0, i));   //mid调用了shortestPalindrome(),使得中间部分返回的是回文字符串
return prefixString + mid + suffix; }

 

posted on 2017-12-15 10:23 Michael2397 阅读(...) 评论(...) 编辑 收藏

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值