题解列表
小白,看看就行,不动脑袋
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string s, s2; ……
[STL训练]百步穿杨........
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"
using namespace std;
// 定义结构体aaa,包含两个整数成员c和k
struct aaa{
……
string的find函数 #2304: 蓝桥杯2019年第十届省赛真题-特别数的和
摘要:```
#define _CRT_SECURE_NO_WARNINGS 1
#include
#include
#include
#include
#include
#include
……
蓝桥杯算法提高VIP-数组替换 (*>.<*)
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"
using namespace std;
void Add (int a[], int m, int b[], int……
1207: 字符排列问题(排列组合的思想,合理利用全排列)
摘要:对于该题,通过排列组合的方法简单易懂注意:对于n个数的全排列的最多种类即为n!(n的阶乘)因为给出的数据有重复的字母,而重复的字母会对全排列的种类有影响思路: 以本题所给数据为例:输入四个字……
[STL训练]寻梦,无STL纯循环解法!
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"
using namespace std;
int main(){
// 定义整数变量a
int a;
……
[STL训练]壮志难酬,字符串数组暴力!
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"
using namespace std;
int main(){
// 定义一个字符串数组,用于存储输入的字……