所用语言 Java 所用知识 字符串 解题思路 从左到右开始遍历,如果字符相同,把s的索引右移一位,最后判断索引与s的长度即可 完整代码 public boolean isSubsequence (String s, String t) { // write code here int index=0; for(int i=0;i<t.length();i++){ char tch=t.charAt(i),sch=s.charAt(index); if(tch==sch) index++; if(index=...