题解列表
编写题解 1044: [编程入门]三个字符串的排序
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<string>using namespace std;int main(){ string str1,str2,……
编写题解 1043: [编程入门]三个数字的排序
摘要:解题思路:注意事项:参考代码:#include<iostream>using namespace std;int main(){ int a,b,c; cin>>a>>b>>c; i……
蓝桥杯2021年第十二届省赛真题-杨辉三角形
摘要:解题思路: 参考https://blog.csdn.net/weixin_44091134/article/details/116748883做的注意事项: 参考代码:#include<iostrea……
效率最高的方法(不服来比)
摘要:```cpp
#include
#include
#include
using namespace std;
struct node
{
int x, y;
}t;
queu……
最快最好的题解(优化版)(时间复杂度极低)(思路清晰,大佬秒懂,小白看情况)
摘要:解题思路:很明显,这是一道最最基础的广度优先搜索,废话不多说,上代码注意事项:注意“size = q.size()"参考代码:#include <iostream>#include <cstring>……
一个非常非常简短的逗比题解
摘要:解题思路:看样例输出注意事项:无参考代码:#include <iostream>#include <cstdio>using namespace std;int main(){ cout<<"2……
蓝桥杯算法提高VIP-字符串跳步 ( C++ )
摘要:解题思路:注意事项:参考代码:#include <iostream>
#include <string>
using namespace std;
string s1;
int main(……
蓝桥杯2017年第八届真题-正则问题
摘要:解题思路:注意事项: 用<stack>要注意 测试数据的括号()不全是合法的。参考代码:#include<iostream>
#include<string>
#include<stack>
#……
排序问题,江小白yyds
摘要:解题思路:用c++中的sort,直接排序注意事项:参考代码:#include<bits/stdc++.h>using namespace std;int fun(int a,int b){ retur……