简单的字符串-题解(C++代码)C++超简单方法 摘要:```cpp #include using namespace std; // 因为每次只用对比后一个字符,所以这样模拟就行,但是 // 要注意最后一个字符怎么输出,其方法是加一个无关字…… 题解列表 2020年03月04日 0 点赞 1 评论 734 浏览 评分:9.9
HashMap的应用 摘要:解题思路:利用hashmap键值对 ,判断键是否存在对应的字符 ,不存在则初始化,值为1,表示第一次出现;存在的话值加一;最后遍历输出。注意事项: map.containsKey()判断键是否存在;…… 题解列表 2022年03月16日 0 点赞 0 评论 270 浏览 评分:9.9
简单的字符串-题解(Python代码) 摘要:解题思路:注意事项:参考代码:n=int(input())list1=[]for i in range(0,n): s=str(input()) list1.append(list(s))…… 题解列表 2020年11月24日 0 点赞 0 评论 413 浏览 评分:9.9
简单的字符串(c语言代码)【每行都有详细注释】【思路清晰代码简洁简单易懂】 摘要:解题思路:单指针检测注意事项:cnt初始值为1;字符串s大小需要留出‘\0’的位置;记得换行;cnt==1时不输出cnt;pos记得移动,否则会死循环。参考代码:#include <stdio.h> …… 题解列表 2021年09月25日 0 点赞 0 评论 241 浏览 评分:9.9
【C语言】编写题解 1402: 简单的字符串 摘要:参考大神题解,理解后写了注释。参考代码:#include <stdio.h> #include <string.h> int main() { int i, j, k, n, len, cou…… 题解列表 2021年10月26日 0 点赞 0 评论 298 浏览 评分:9.9
编写题解 1402: 简单的字符串(独家复杂方法) 摘要:###都拿去吧!应该很少有人会这样写 ```cpp #include using namespace std; int main() { int b[27]={0}; int n; …… 题解列表 2023年01月24日 0 点赞 0 评论 131 浏览 评分:9.9
Manchester-【简单的字符串】 摘要:#### 解题思路: 设置一个计数器Count_=1; 从头到尾依次遍历每一个字符,若当前字符与其后一个字符相同,则Count++,若不相同,则输出Count和当前字符且初始化Count=1,注意…… 题解列表 2020年04月19日 0 点赞 0 评论 845 浏览 评分:9.9
1402: 简单的字符串 摘要:解题思路:开辟一个长度为26的数组,记录字母出现的情况参考代码:#include <stdio.h> #include <string.h> int main () { int i; …… 题解列表 2022年01月07日 0 点赞 0 评论 370 浏览 评分:9.9
简单的字符串-题解c语言 摘要:#include <stdio.h> int main (void){ int count=0,n;// count 是循环进行的次数,n是需要进行的次数 int i,t=1; // i 是…… 题解列表 2022年04月08日 0 点赞 1 评论 473 浏览 评分:9.9
简单的字符串 摘要:解题思路:注意事项:参考代码:import java.util.LinkedList; import java.util.Scanner; public class _1402 { …… 题解列表 2021年03月08日 0 点赞 0 评论 377 浏览 评分:9.9