摘要: class Solution { public: int findTheLongestSubstring(string s) { /*需要找到状态为0的子序列[i,j],[i,j]=[0,j]-[0,i](两者状态相同时的差) */ int state=0,ans=0; vector<int> p( 阅读全文
posted @ 2020-07-11 10:15 阿破 阅读(106) 评论(0) 推荐(0)