题目链接:https://leetcode-cn.com/problems/distinct-subsequences/description/ 参考链接:https://www.cnblogs.com/springfor/p/3896152.html http://blog.csdn.net/abcbc/article/details/8978146 dp[i][j]:S使用前i个字符,T使用前面j个字符.dp[0][0]使用S前0个字符,使用T前0个字符. 当T为空的时候,空字符串是任何S串…