标签:code public mic 字母 判断 不用 tco 相对 nbsp
给定字符串 s 和 t ,判断 s 是否为 t 的子序列。
你可以认为 s 和 t 中仅包含英文小写字母。字符串 t 可能会很长(长度 ~= 500,000),而 s 是个短字符串(长度 <=100)。
字符串的一个子序列是原始字符串删除一些(也可以不删除)字符而不改变剩余字符相对位置形成的新字符串。(例如,"ace"是"abcde"的一个子序列,而"aec"不是)。
示例 1:
s = "abc", t = "ahbgdc" 返回 true.
示例 2:
s = "axc", t = "ahbgdc" 返回 false.
来源:力扣(LeetCode)
链接:https://leetcode-cn.com/problems/is-subsequence
思路:
这个判断子序列嘛,简单题,不用多说了,方法也不少
class Solution { public boolean isSubsequence(String s, String t) { char [] arr = new char[s.length()]; arr = s.toCharArray(); int index = -1; for (char c : arr){ index = t.indexOf(c,index + 1); if (index == -1){ return false; } } return true; } }
indexOf() 方法可返回某个指定的字符串值在字符串中首次出现的位置。
只要有一次没有找到那就不是子序列呗。
标签:code public mic 字母 判断 不用 tco 相对 nbsp
原文地址:https://www.cnblogs.com/zzxisgod/p/13338808.html