结构体链表,超清晰思路 #1676: 数据结构-链表的基本操作(C++) 摘要:**数据量很大时要使用C语言的输入输出,这道题如果用cin,cout很可能超时**```#include#includetypedefstructlNode{intdata;structlNode*n…… 题解列表 2024年11月23日 0 点赞 0 评论 20 浏览 评分:0.0
2950: 素数回文数的个数 摘要:```c#includeusingnamespacestd;constintmaxn=2000010;intprime[maxn];voidjudge_prime(intn){intk=sqrt(n)…… 题解列表 2024年11月23日 0 点赞 0 评论 44 浏览 评分:0.0
1480-普普通通的解题方法 摘要:解题思路:注意事项:用scanf写输入格式时,如果只想写一行,注意两个%d之后加一个空格再接%c。参考代码:#include<stdio.h>intch(charc){if(c==&…… 题解列表 2024年11月23日 0 点赞 0 评论 39 浏览 评分:0.0
信息学奥赛一本通T1323-活动选择,来看看吧╮(¯▽¯)╭ 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"using&nbsp;namespace&nbsp;std;//&nbsp;定义…… 题解列表 2024年11月23日 0 点赞 0 评论 36 浏览 评分:0.0
2000-普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){intn,t;scanf("%d",&n);for(inti=0;i<…… 题解列表 2024年11月23日 0 点赞 0 评论 21 浏览 评分:0.0
详细解释我的代码这么写的原因 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>//因为我下面有用strlen()函数,所以需要用头文件“#in…… 题解列表 2024年11月23日 1 点赞 0 评论 35 浏览 评分:0.0
普普通通的解题方法 摘要:解题思路:注意事项:参考代码:#include<stdio.h>intmain(){intn,j,a[1001],l;scanf("%d",&n);for(j=…… 题解列表 2024年11月23日 0 点赞 0 评论 23 浏览 评分:0.0
[编程入门]自定义函数之数字后移 摘要:扩充挪到前面的代码先输出,没动的代码先输出,但是内存可能不够参考代码:&nbsp;#include<stdio.h>inta[100000];intmain(){&nbsp…… 题解列表 2024年11月23日 1 点赞 0 评论 40 浏览 评分:0.0
1017: [编程入门]完数的判断 摘要:解题思路:注意事项:参考代码:#include<bits/stdc++.h>usingnamespacestd;intmain(){&nbsp;&nbsp;inti,j,n…… 题解列表 2024年11月23日 0 点赞 0 评论 36 浏览 评分:0.0
数字金字塔,记忆化dfs,点进来吧万一就看懂了呢 摘要:解题思路:注意事项:参考代码:#include"bits/stdc++.h"using&nbsp;namespace&nbsp;std;//&nbsp;全局…… 题解列表 2024年11月23日 0 点赞 0 评论 26 浏览 评分:0.0