蓝桥杯2015年第六届真题-奇怪的数列
摘要:解题思路:注意事项:参考代码:#include<iostream>
#include<string>
#include<algorithm>
using namespace std;
stri……
随便写的方法,只关注结果了
摘要:解题思路:注意事项:参考代码:#include <iostream>#include <algorithm>#include <string>#include <sstream>using name……
蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码)
摘要:#include <iostream>#include <cstring>using namespace std;char a[110000];char s[1000010];int main(){ ……
蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码)代码不多,简单操作
摘要:```cpp
#include
#include
#include
using namespace std;
void fun(string &str)
{
string s="";
……
蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码)
摘要:### 解题思路:模拟,枚举每一个得到的字符串,遍历这个字符串,统计连续相同的字符添加进空串中。
```cpp
#include
#define x first
#define y sec……
我不是张玉想——奇怪的数列-题解(C++代码)
摘要:## 一、解题思路:
字符串处理:一开始用的别的方法,写到最后搞混了,后来就试了下这种,效果还行,关键点是【字符串和字符可以用‘+’直接连接起来】
## 二、完整代码
```cpp
#in……
蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码)
摘要:参考代码:#include<bits/stdc++.h>
using namespace std;
int main()
{
char s[101],k[101],*q,b; //s当前串 ……
蓝桥杯2015年第六届真题-奇怪的数列-题解(C++代码)
摘要:```
#include
using namespace std;
int main()
{
int n;
string s,t;
cin>>s>>n;
while(n-……
蓝桥杯2015年第六届真题-奇怪的数列 (C++代码)---int和char转换的简单应用
摘要:注意事项:
1.统计某个数字出现次数,记得将int型次数转换为字符型,接在新的字符串之后
2.一开始输入的字符串不算一次。总共要变换n次
```cpp
#include
#include ……