编写题解 1402: 简单的字符串(独家复杂方法) 摘要:###都拿去吧!应该很少有人会这样写 ```cpp #include using namespace std; int main() { int b[27]={0}; int n; …… 题解列表 2023年01月24日 0 点赞 0 评论 131 浏览 评分:9.9
简单的字符串 java双指针O(n)复杂度! 摘要:import java.util.Scanner; public class Main { /** * ABBCCC * j * k &nbs 题解列表 2022年07月04日 0 点赞 0 评论 100 浏览 评分:9.9
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
1402: 简单的字符串 摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll; int main(){ int …… 题解列表 2022年05月25日 0 点赞 0 评论 121 浏览 评分:0.0
简单的字符串 (Java代码) 摘要:import java.util.Scanner; public class Main { public static void main(String[] args) { …… 题解列表 2022年05月16日 0 点赞 0 评论 125 浏览 评分:0.0
编写题解 1402: 简单的字符串,简单易懂 摘要:解题思路:只要搞清楚逻辑就很容易理解!从第一个字符开始,判断后面是否有连续字母跟它相等的,如果有则count++;否则跳出循环,随后再从不相等的字符开始判断注意事项:多个字符串输入的格式,要用到nex…… 题解列表 2022年05月09日 0 点赞 0 评论 231 浏览 评分:9.9
编写题解 1402: 简单的字符串 摘要:解题思路:字符数组用来作比较,数组用来计数。记得加判断注意事项:参考代码:#include<iostream>using namespace std;#include<string>int main(…… 题解列表 2022年04月18日 0 点赞 0 评论 120 浏览 评分:0.0
简单的字符串-题解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
(C++代码) 简单的字符串-题解 递归函数解法 摘要:#include<iostream> #include<string> #include<string.h> using namespace std; int Count;//记录相同的项的个…… 题解列表 2022年03月26日 0 点赞 0 评论 158 浏览 评分:0.0
HashMap的应用 摘要:解题思路:利用hashmap键值对 ,判断键是否存在对应的字符 ,不存在则初始化,值为1,表示第一次出现;存在的话值加一;最后遍历输出。注意事项: map.containsKey()判断键是否存在;…… 题解列表 2022年03月16日 0 点赞 0 评论 270 浏览 评分:9.9