题解列表
C++查找单词树实现
摘要:其实这道题不用写树来模拟的,但谁让这道题属于树的分类呢```cpp#include #include #include using namespace std;st……
: 蓝桥杯历届试题-回文数字
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<set>using namespace std;int main(){ int n; set……
1023: [编程入门]选择排序
摘要:```c#include int main() { int arr[10]; for(int i=0;i……
蓝桥杯2023年第十四届省赛真题-子串简写 最短解题
摘要:解题思路:注意事项: 你就说短不短吧参考代码:#include"bits/stdc++.h"i……
1204 大小写转换111111111
摘要:解题思路: 小转大upper()注意事项:参考代码:a=input()b=input()c=input()a1=a.upper()b1=b.upper()c1=c.upper()print(a1)pr……
[编程入门]字符串分类统计
摘要:```c#include int main() { char s[201]; scanf("%[^\n]",s); int i=0; int abc……