题解 1268: 第K极值

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

筛选

P1001 (C语言代码)

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

P1001 (C语言代码)

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

P1001 (C++代码)水一下

摘要:解题思路:    又水了一发啊参考代码:#include<bits/stdc++.h> #define hh ios::sync_with_stdio(false),cin.tie(0),cout.……

P1001-题解(C语言代码)

摘要:1、我解决这道题的思路是:首先输入的数字序列按从小到大的顺序排序,再取出第K最大和最第K最小的数字计算Result,之后判断Result是否是质数。 2、参考代码如下: #include ……

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

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

P1001 (C语言代码)

摘要:解题思路:注意事项:素数<2情况不能忽略,报错n次没发现问题。参考代码:#include<stdio.h>#include<math.h>int isprime(int num){ int i; if……

编写题解 1268: P1001(python代码)

摘要:解题思路:注意事项:参考代码:def isprime(x):     ls=[1,3,7,9]     lis=[2,3,5,7]     if x <1:         return 0 ……

P1001 (C++代码)

摘要:题目链接:http://www.dotcpp.com/oj/problem.php?id=1268 解题思路:首先,对这组数据进行从小到大排序,拍好后,第k大的数字是a[n-k],可以推一下,第一大是……

P1001C++排序+素数

摘要:解题思路:就一个排序(直接使用sort即可)和判定素数注意事项:参考代码:#include <iostream>#include <string>#include <algorithm>using n……