1312. Minimum Insertion Steps to Make a String Palindrome
https://leetcode.com/problems/minimum-insertion-steps-to-make-a-string-palindrome/
Given a string s
. In one step you can insert any character at any index of the string.
Return the minimum number of steps to make s
palindrome.
A Palindrome String is one that reads the same backward as well as forward.
Example 1:
Example 2:
Example 3:
Example 4:
Example 5:
问字符串最少插入多少字符能使它变成回文。min + 回文 => DP或KMP。DP[i, j]表示s[i,j]至少需要的数目,检查s[i]是否等于s[j],等的时候为dp[i+1][j-1],不等时action为补s[i]或补s[j]。
Last updated
Was this helpful?