不是双指针 想知道哪里错了 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int main(){ int flag = 0; string s1,s2; ci…… 题解列表 2023年04月02日 0 点赞 0 评论 61 浏览 评分:0.0
加油,双指针真快 摘要:解题思路:双指针注意事项:使用两重循环发现有6个数据超时,找出全部子串进行比较又内存超过限制。使用双指针成为最优解,注意理解while循环的内容,这是核心。可以参考b站up关于42号星球的讲解视频。,…… 题解列表 2023年03月26日 0 点赞 0 评论 142 浏览 评分:9.9
最长不含重复字符的子字符串 (Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { Sca…… 题解列表 2022年06月12日 0 点赞 0 评论 108 浏览 评分:9.9
最长子序列 摘要:```cpp #include using namespace std; string s1; int ans = 0; const int L = 1000010; int arr[L]…… 题解列表 2022年03月16日 0 点赞 0 评论 207 浏览 评分:0.0
使用队列思想解题(JAVA代码) 摘要:解题思路:* 思路: * * 整个字符串可以看成很多段无重复的字串重叠拼接而成 * 只要筛选出最长的字串就可以了 * 如:asdfgdfg 字串是:asdfg,fgd,gdf,dfg * *…… 题解列表 2021年12月12日 0 点赞 0 评论 204 浏览 评分:9.9
最长不含重复字符的子字符串-题解(C++尺取法) 摘要:#include<bits/stdc++.h> using namespace std; signed main() { string s; cin>>s; int res=-1; …… 题解列表 2020年12月13日 0 点赞 0 评论 296 浏览 评分:9.9
优质题解 最长不含重复字符的子字符串-题解(C/C++)你一定看的懂的过程讲解 摘要:思路是参考的。 首先题目要求不重复的最大长度字符串,乍一想很复杂,而且就算会写,可能超时。 突破点在于:**字符串最大长度…… 题解列表 2020年02月27日 0 点赞 2 评论 1104 浏览 评分:8.7
最长不含重复字符的子字符串-题解(C语言代码) 摘要:```c #include #include int insert_char(char *a,char c){ int len=(int)strlen(a),i,j; a[l…… 题解列表 2019年12月11日 0 点赞 1 评论 848 浏览 评分:9.9