[搞比利]题解2030:23.树的中序遍历 (C++代码) 摘要: #include using namespace std; int n,ans; struct node{ int l,m,r,father; }; node fitree[…… 题解列表 2019年11月17日 0 点赞 0 评论 1051 浏览 评分:9.9
代码短小精干蓝桥杯2013年第四届真题-公式求值-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { int zuhe(int n, int m); int n,…… 题解列表 2019年11月17日 0 点赞 4 评论 2410 浏览 评分:7.3
[搞比利]题解2029:22.获取树的规模 (C++代码) 摘要: #include using namespace std; int n,ans; struct node{ int child[6],n=0,father;}; node fit…… 题解列表 2019年11月16日 0 点赞 2 评论 1001 浏览 评分:9.9
2.电导流的矩形-题解(C++代码) 摘要:我先做完再看老师讲的,发现老师的代码比较喜欢使用子函数来编程,代码复用性高,我是先自己做一遍,然后再看老师讲的,我怕听了老师讲完后,自己思维固化,做到不理解的地方再看看老师是怎么做的,或者再看看有什么…… 题解列表 2019年11月16日 0 点赞 0 评论 1058 浏览 评分:9.3
【亲和数】-题解(C++代码) 摘要:```cpp #include using namespace std; int main() { int x,a,b,sum1=0,sum2=0; while (cin >> x) …… 题解列表 2019年11月16日 0 点赞 0 评论 1055 浏览 评分:9.6
[搞比利]题解2025:18.环形传送器 无指针链表(C++代码) 摘要: #include using namespace std; int data[100086],Next[100086],pre[100086],pos=0,maxn=0,sum=0; v…… 题解列表 2019年11月15日 0 点赞 0 评论 1030 浏览 评分:9.9
数据结构-链表的基本操作-题解(C++代码)不会链表的可以康康 摘要:#include #include #include #include using namespace std; int main(){ int n; cin>>n; v…… 题解列表 2019年11月15日 0 点赞 0 评论 1313 浏览 评分:6.0
[编程入门]筛选N以内的素数-题解(C++代码) 摘要:`#include using namespace std; int main() { int n; cin>>n; bool aaaa; for(int i=2;i…… 题解列表 2019年11月14日 0 点赞 0 评论 937 浏览 评分:0.0
[编程入门]筛选N以内的素数-题解(C++代码) 摘要:`#include using namespace std; int main() { int n; cin>>n; bool aaaa; for(int i=2;i…… 题解列表 2019年11月14日 0 点赞 0 评论 878 浏览 评分:9.0
10.猜价模拟-题解(C++代码) 摘要:```cpp #include #include using namespace std; int main() { int n; int i,len ; cha…… 题解列表 2019年11月14日 0 点赞 1 评论 572 浏览 评分:9.9