题解 1268: 第K极值

来看看其他人写的题解吧!要先自己动手做才会有提高哦! 
返回题目 | 我来写题解

筛选

P1001 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<algorithm>using namespace std;const int M=10000;int a[M]={……

P1001 (C语言代码)

摘要:解题思路:注意事项:注意m<2的判断参考代码:#include<stdio.h>int main(){ int N,k,i,j,m,f=0; int a[10000]; scanf("%d%d",&N……

P1001 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<stdlib.h>#include<math.h>int cmp(const void *a,const void *……

P1001 (C语言代码)

摘要:解题思路:输入n个长整型数到数组a,要求数组a中第k大的数字减去第k小的数字,首先应对a进行排序,然后找到所需数字的下标,访问数组,求得相减后的结果,再调用判断是否为质数的函数,输出相应的答案和值。注……

P1001 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<stdio.h>#include<math.h>int Confirm(int n){        //确定是否为质数         if(n<2)……

P1001 (C语言代码)

摘要:解题思路:注意事项:参考代码:#include<iostream>#include<vector>#include<algorithm>using namespace std;void is_prim……

P1001 (C语言代码)来看我的吧

摘要:解题思路:首先这个题目是多组输入测试(就是因为这个,提交了好几次,主要题目也没有说明),来说说这个题吧:                给定数据量,输入数据就不说了,想必大家早已精通这些了(哈哈);找……

P1001 (C语言代码)

摘要:解题思路:用 sort 函数对输入的数进行排序;              将得到的数进行判断是否为一个素数;注意事项:参考代码:#include<iostream>#include<algorith……

P1001 (C语言代码)

摘要:解题思路:    本来想用快速排序法的,可是时间超时了,有大佬解释一下吗?注意事项:参考代码:#include <stdio.h> #include <string.h> int a[10……