【Leetcode每日刷题3】 程序员文章站 2022-06-28 11:15:52 ... 双指针法 class Solution { public: bool isSubsequence(string s, string t) { int lenS = s.size(); int lenT = t.size(); if(lenS == 0){ return true; } if(lenT == 0){ return false; } int i = 0, j = 0; while(i < lenT){ if(t[i] == s[j]){ j ++; } i ++; } if(j == lenS){ return true; } return false; } }; 相关标签: Leetcode刷题日记 上一篇: 无重复字符的最长子串_力扣_算法_滑窗格 下一篇: Linux下RPM软件包的安装及卸载 推荐阅读 leetcode刷题指南什么语言(零基础刷leetcode) #leetcode刷题之路44-通配符匹配 leetcode刷题指南什么语言(零基础刷leetcode) #leetcode刷题之路13-罗马数字转整数 #leetcode刷题之路48-旋转图像 #leetcode刷题之路46-全排列 LeetCode刷题第二天 #leetcode刷题之路45-跳跃游戏 II #leetcode刷题之路18-四数之和 #leetcode刷题之路3-无重复字符的最长子串