题解列表
1585: 蓝桥杯算法训练VIP-链表数据求和操作
摘要:**问题描述:**读入10个复数,建立对应链表,然后求所有复数的和。
**解题思路:**
1.创建链表
2.使用链表
3.销毁链表
代码如下:
```c
#include
#……
1584: 蓝桥杯算法训练VIP-判定字符位置
摘要:**题目描述:**返回给定字符串s中元音字母的首次出现位置。英语元音字母只有‘a’、‘e’、‘i’、‘o’、‘u’五个。若字符串中没有元音字母,则返回0。**只考虑小写的情况。**
直接上代码,一看……
1644: 蓝桥杯算法训练VIP-最长字符串
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ string m……
1644: 蓝桥杯算法训练VIP-最长字符串
摘要:```cpp
#include
using namespace std;
typedef long long ll;
int main()
{
string maxxstr;
……
题解 1644: 蓝桥杯算法训练VIP-最长字符串
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;int main(){ int maxx1=0; string maxx; for……
2846: 统计数字字符个数
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ string s……
2236: 蓝桥杯算法训练-大小写转换
摘要:解题思路:注意事项:参考代码:#include <bits/stdc++.h>using namespace std;typedef long long ll;int main(){ string s……
1257: 超级楼梯(动态规划入门)
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<cstring>using namespace std;int main(){ int T; cin >> T; w……