博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
115 Distinct Subsequences
阅读量:6843 次
发布时间:2019-06-26

本文共 627 字,大约阅读时间需要 2 分钟。

Given a string S and a string T, count the number of distinct subsequences of T in S.A subsequence of a string is a new string which is formed from the original string by deleting some (can be none) of the characters without disturbing the relative positions of the remaining characters. (ie, "ACE" is a subsequence of "ABCDE" while "AEC" is not).Here is an example:S = "rabbbit", T = "rabbit"Return 3.
截取"bbb" 和 "bb" 出来填表。      0 b b0 1 0 0b 1 1 0b 1 2 1b 1 3 3
public class Solution {    public int numDistinct(String s, String t) {        int[][] table = new int[s.length() + 1][t.length() + 1];                for(int i=0;i

转载地址:http://pldul.baihongyu.com/

你可能感兴趣的文章
物联网快速发展 应用领域广阔
查看>>
记录-三步走FreeMarker Template学习
查看>>
vsts项目管理理论基础——MSF
查看>>
Cocos2d-x Eclipse下程序运行产生错误Effect initCheck() returned -1
查看>>
Unity依赖注入使用详解
查看>>
浅谈Dynamic 关键字系列之二:调用属性,方法,字段
查看>>
酷炫好玩又实用 | 可能是CES上六个最值得买的电子产品
查看>>
Android无线调试
查看>>
Microsoft Security Essential: 微软安全软件
查看>>
新书内容连载(2):Android Activity的生命周期
查看>>
Android 字体修改,所有的细节都在这里 | 开篇
查看>>
Hash与Map
查看>>
Windows GVim
查看>>
系统键盘按钮keyCode大全
查看>>
kernel_read【转】
查看>>
内核分配大块连续内存的方法【转】
查看>>
【Python】random模块
查看>>
嵌入式Linux下Camera编程--V4L2【转】
查看>>
一文读懂最近流行的CNN架构(附学习资料)
查看>>
[工具] 程序员必须软件
查看>>