P1001-题解(C语言代码)简单粗暴 摘要:**解题思路:**就是一个先排序后做一个减法,再判断素数的过程 - 掌握的算法需要有(排序算法,判断素数) - 对于排序算法,我是用的直接调用c++中的sort排序 - 判断素数(时间复杂度较小…… 题解列表 2019年12月22日 0 点赞 1 评论 795 浏览 评分:9.9
1268: 第K极值 摘要:```cpp #include using namespace std; const int maxn=10001; int n,k,arr[maxn],ans; string is_pre…… 题解列表 2023年03月14日 0 点赞 0 评论 118 浏览 评分:9.9
P1001(C语言) 摘要:解题思路:筛法求素数+排序注意事项:判断m>=2,根据测试用例该题没有去重排序eg:序列1 4 4 4 0中第二大为4和第二小为1参考代码:#include<stdio.h>#include<math…… 题解列表 2021年03月27日 0 点赞 0 评论 418 浏览 评分:9.9
P1001-题解(C语言代码) 摘要: #include //判断是否为质数(素数) int func(int m){ if(m…… 题解列表 2020年03月18日 0 点赞 2 评论 662 浏览 评分:9.9
P1001 (C++代码)精致详细题解 摘要:#include using namespace std; //首先设置函数对数组进行排序 void bubble(int* a, int len) { for (int i = 0; i…… 题解列表 2019年12月07日 0 点赞 0 评论 462 浏览 评分:9.9
P1001-题解(C语言代码)考虑差为负数的情况! 摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<string.h>#include<math.h>int p(int n)//判断差是否素数{ int i; …… 题解列表 2020年12月26日 0 点赞 0 评论 407 浏览 评分:9.9
1268: 第K极值 摘要:参考代码:#include<stdio.h> #include<stdlib.h> int cmp(const void *a,const void *b){ return *(int *)a…… 题解列表 2023年02月16日 0 点赞 0 评论 161 浏览 评分:9.9
优质题解 第k极值(C/C++)+ 常见误区 摘要:解题思路: 题前小磕:这一题一看题目就非常简单,但是为什么我还要写这个题解呢?这个代码改了好久....因为淋过雨,所以要帮你们撑伞!!!(好久没有写题解了,更新一…… 题解列表 2022年11月18日 0 点赞 0 评论 542 浏览 评分:9.9
P1001(Java代码)注意特殊情况 摘要:解题思路: 无注意事项: 注意存在差为0,1的特殊值时,输入:5 22 2 2 2 2 输出 :NO0输入:5 22 2 2 3 3输出:NO1参考代码:import java.util.Ar…… 题解列表 2021年02月17日 0 点赞 1 评论 380 浏览 评分:9.9
P1001 (Java代码) 摘要:import java.util.Arrays; import java.util.Scanner; public class Main { public static void ma…… 题解列表 2022年02月11日 0 点赞 0 评论 264 浏览 评分:9.9