1402: 简单的字符串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll; int main(){ int …… 题解列表 2022年05月25日 0 点赞 0 评论 121 浏览 评分:0.0
1402: 简单的字符串 摘要:#include<stdio.h> #include<string.h> int main() { int n,i,len;char str[10000]; scanf("%d\n",&n)…… 题解列表 2022年06月23日 0 点赞 0 评论 86 浏览 评分:0.0
简单的字符串 java双指针O(n)复杂度! 摘要:import java.util.Scanner; public class Main { /** * ABBCCC * j * k &nbs 题解列表 2022年07月04日 0 点赞 0 评论 100 浏览 评分:9.9
编写题解 1402: 简单的字符串(独家复杂方法) 摘要:###都拿去吧!应该很少有人会这样写 ```cpp #include using namespace std; int main() { int b[27]={0}; int n; …… 题解列表 2023年01月24日 0 点赞 0 评论 131 浏览 评分:9.9
python简单字符串两个解法 带解析 摘要:# 法1:N=int(input().strip())#输入题目Nfor i in range(N): A=input() #输入字符串 n=1 #记录相邻相同字符的个数 s = "…… 题解列表 2023年02月11日 0 点赞 0 评论 69 浏览 评分:0.0
1402: 简单的字符串 摘要:```cpp #include using namespace std; int main() { int n; cin>>n; while(n--) …… 题解列表 2023年03月22日 0 点赞 0 评论 180 浏览 评分:9.9
简单的字符串 摘要:解题思路:用字典去重注意事项:参考代码:n = int(input())for i in range(n): L = list(input()) dic = {} for i in …… 题解列表 2023年03月27日 0 点赞 0 评论 73 浏览 评分:0.0
简单的字符串 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>int main(){ int n=0; scanf("%d",&n); g…… 题解列表 2023年12月20日 0 点赞 0 评论 67 浏览 评分:0.0
搞懂map自定义排序 摘要: #include #include using namespace std; //mapa 相当于 mapa; //如果是mapa,char…… 题解列表 2024年01月11日 0 点赞 0 评论 99 浏览 评分:0.0
map集合(简单易懂) 摘要:解题思路:注意事项:参考代码:import java.util.HashMap;import java.util.Map;import java.util.Map.Entry;import java.…… 题解列表 2024年03月29日 0 点赞 1 评论 121 浏览 评分:9.9