题解列表
C++构建树以及寻找树根与孩子
摘要:```cpp#include #include #include #include #include using namespace std;struct NodeTr……
蓝桥杯2019年第十届省赛真题-修改数组 巧用STL
摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"usingnamespacestd;#definell&nb……
Power Strings 暴力解法
摘要:解题思路:看代码注意事项:无参考代码:#include<bits/stdc++.h>usingnamespacestd;boolis……
1204 大小写转换111111111
摘要:解题思路: 小转大upper()注意事项:参考代码:a=input()b=input()c=input()a1=a.upper()b1=b.upper()c1=c.upper()print(a1)pr……
1023: [编程入门]选择排序
摘要:```c#include int main() { int arr[10]; for(int i=0;i……
: 蓝桥杯历届试题-回文数字
摘要:解题思路:注意事项:参考代码:#include<iostream>#include<set>using namespace std;int main(){ int n; set……
C++查找单词树实现
摘要:其实这道题不用写树来模拟的,但谁让这道题属于树的分类呢```cpp#include #include #include using namespace std;st……