蓝桥杯2015年第六届真题-奇怪的数列 (C++代码)(LookAndSay) 摘要:解题思路: 注意一下变换次数为 0 的陷阱,题解操作注释就应该能说明白了,欢迎交流。参考代码:#include<bits/stdc++.h> using namespa…… 题解列表 2018年06月05日 0 点赞 0 评论 1323 浏览 评分:9.9
蓝桥杯2015年第六届真题-奇怪的数列 (C++代码) 摘要:解题思路:用循环...有点绕,递归可能好一点...注意事项:参考代码:#include <iostream> #include <stdio.h> #include <string> #incl…… 题解列表 2018年12月15日 0 点赞 0 评论 697 浏览 评分:6.7
蓝桥杯2015年第六届真题-奇怪的数列 (C++代码) 摘要:# 小白一个,代码有不足的地方希望各位给出建议 参考代码: #include #include using namespace std; int main(…… 题解列表 2020年02月06日 0 点赞 0 评论 594 浏览 评分:9.9
蓝桥杯2015年第六届真题-奇怪的数列 (C++代码)---int和char转换的简单应用 摘要:注意事项: 1.统计某个数字出现次数,记得将int型次数转换为字符型,接在新的字符串之后 2.一开始输入的字符串不算一次。总共要变换n次 ```cpp #include #include …… 题解列表 2020年03月28日 0 点赞 0 评论 498 浏览 评分:9.9
蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码) 摘要:``` #include using namespace std; int main() { int n; string s,t; cin>>s>>n; while(n-…… 题解列表 2020年07月02日 0 点赞 0 评论 234 浏览 评分:0.0
蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码) 摘要:参考代码:#include<bits/stdc++.h> using namespace std; int main() { char s[101],k[101],*q,b; //s当前串 …… 题解列表 2020年08月07日 0 点赞 0 评论 274 浏览 评分:9.9
我不是张玉想——奇怪的数列-题解(C++代码) 摘要:## 一、解题思路: 字符串处理:一开始用的别的方法,写到最后搞混了,后来就试了下这种,效果还行,关键点是【字符串和字符可以用‘+’直接连接起来】 ## 二、完整代码 ```cpp #in…… 题解列表 2020年08月21日 0 点赞 0 评论 487 浏览 评分:9.9
蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码) 摘要:### 解题思路:模拟,枚举每一个得到的字符串,遍历这个字符串,统计连续相同的字符添加进空串中。 ```cpp #include #define x first #define y sec…… 题解列表 2020年10月09日 0 点赞 0 评论 390 浏览 评分:0.0
蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码)代码不多,简单操作 摘要:```cpp #include #include #include using namespace std; void fun(string &str) { string s=""; …… 题解列表 2020年10月13日 0 点赞 0 评论 378 浏览 评分:6.0
蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码) 摘要:#include <iostream>#include <cstring>using namespace std;char a[110000];char s[1000010];int main(){ …… 题解列表 2021年01月30日 0 点赞 0 评论 191 浏览 评分:0.0