字符串+动态规划 字符串算法应用动态规划十分常见,最长公共子串、最长公共子序列都需要用这种算法进行。 44. Wildcard Matching class Solution {public boolean isMatch(String s, String p) {char[]……