题解 | #添加最少的字符让字符串变为回文字符串(1)#

添加最少的字符让字符串变为回文字符串(1)

http://www.nowcoder.com/practice/a5849b7e3bc940ff8c97b47d3f76199b

import java.util.Scanner;
public class Main {

    /*1、基础:
    dp[i][j]:表示str[i...j]最少添加几个字符使得str[i...j]是回文串
    时间复杂度O(N^2),空间复杂度O(N^2)
    * */
    public static int[][] getDP(char[] str) {
        int[][] dp = new int[str.length][str.length];

        for (int j = 1; j < str.length; j++) {
            dp[j - 1][j] = str[j - 1] == str[j] ? 0 : 1;//两个字符情况  一个为0
            for (int i = j - 2; i > -1; i--) {
                if (str[i] == str[j]) {
                    dp[i][j] = dp[i + 1][j - 1];
                } else {
                    dp[i][j] = Math.min(dp[i + 1][j], dp[i][j - 1]) + 1;
                }
            }
        }
        return dp;
    }

    //根据dp和str得到新的字符串   时间复杂度O(N)
    public static String get1(String str) {
        if (str == null || str.length() < 2) {
            return str;
        }
        char[] chas = str.toCharArray();  //str转字符数组
        int[][] dp = getDP(chas);
        char[] res = new char[chas.length + dp[0][chas.length - 1]];  //返回的结果
        int i = 0;
        int j = chas.length - 1;
        int l = 0;
        int r = res.length - 1;
        while (i <= j) {
            if (chas[i] == chas[j]) {
                res[l++] = chas[i++];
                res[r--] = chas[j--];
            } else if (dp[i][j - 1] < dp[i + 1][j]) {//
                res[l++] = chas[j];
                res[r--] = chas[j--];
            } else {
                res[l++] = chas[i];
                res[r--] = chas[i++];
            }
        }

        return String.valueOf(res);
    }

    public static void main(String[] args) {
        Scanner in = new Scanner(System.in);
        String str = in.nextLine();
        String res = get1(str);
        System.out.println(res);
    }
}
全部评论

相关推荐

字节 飞书绩效团队 (n+2) * 15 + 1k * 12 + 1w
点赞 评论 收藏
分享
11-09 01:22
已编辑
东南大学 Java
高级特工穿山甲:羡慕,我秋招有家企业在茶馆组织线下面试,约我过去“喝茶详谈”😢结果我去了发现原来是人家喝茶我看着
点赞 评论 收藏
分享
10-14 23:01
已编辑
中国地质大学(武汉) Java
CUG芝士圈:虽然是网上的项目,但最好还是包装一下,然后现在大部分公司都在忙校招,十月底、十一月初会好找一些。最后,boss才沟通100家,别焦虑,我去年暑假找第一段实习的时候沟通了500➕才有面试,校友加油
点赞 评论 收藏
分享
点赞 收藏 评论
分享
牛客网
牛客企业服务