首页
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
阿灿
2025年3月21日 16:23
整数奇偶排序 题解:SORT
P1248
回复 0
|
赞 3
|
浏览 89
#include<bits/stdc++.h> using namespace std; bool cmp(int a,int b){ if((a%2)==(b%2)){ if(a%2==0){ return a<b; }else{ return a>b; } }else{ return (a%2) > (b%2); } } int main(){ int a[10]; while(cin>>a[0]>>a[1]>>a[2]>>a[3]&g...
cc12345
2025年3月17日 20:04
整数奇偶排序 题解:先暴力分区,然后找到分区点后排序
P1248
回复 0
|
赞 0
|
浏览 89
#include<bits/stdc++.h> using namespace std; bool cmp_desc(int a,int b) { return a>b; } int main() { int a[10]; while(cin>>a[0]>>a[1]>>a[2]>>a[3]>>a[4]>>a[5]>>a[6]>>a[7]>>a[8]>>a[9]) { for(int i=0;i<9;i++){ ...
zxjrheaven
2025年3月12日 22:27
整数奇偶排序 题解:暴力
P1248
回复 0
|
赞 1
|
浏览 125
#include <bits/stdc++.h> using namespace std; int a[10]; bool cmp(int a,int b) { return a>b; } int main() { while(cin>>a[0]>>a[1]>>a[2]>>a[3]>>a[4]>>a[5]>>a[6]>>a[7]>>a[8]>>a[...
aichitudou
2025年3月9日 19:56
整数奇偶排序 题解:
P1248
回复 0
|
赞 2
|
浏览 119
双数组 #include<bits/stdc++.h> using namespace std; bool cmpA(int a,int b){ return a<b; } bool cmpD(int a,int b){ return a>b; } int main(){ int a[105]; int b[105]; while(cin>>a[0]){ b[0]=a[0]; for(int i=1;i<10;i++){ ...
ccccccyes
2024年9月7日 21:27
整数奇偶排序 题解:
P1248
回复 0
|
赞 3
|
浏览 716
//07/09/24 21:15 //07/09/24 21:27 #include <iostream> #include <vector> #include <algorithm> using namespace std; int arr[9]; vector<int> arr1,arr2; bool cmpDec(int a,int b){ return a>b; } int main(){ int n = 10; int num; for(int i = ...
18919717626
2024年7月6日 21:35
整数奇偶排序 题解:模板题
P1248
回复 0
|
赞 10
|
浏览 608
#include <bits/stdc++.h> using namespace std; const int maxn = 1000 + 10; int arr[maxn]; bool cmp(int x,int y){ if(x % 2 == 1 && y % 2 == 1){ return y < x; }else if(x % 2 == 0 && y % 2 == 0){ return x < y; }else if(x % 2 == 1 && y % 2 ==...
Candour
2024年5月8日 23:43
整数奇偶排序(多组测试输入) 题解:
P1248
回复 0
|
赞 2
|
浏览 601
#include<bits/stdc++.h> using namespace std; const int N = 15; int num[N]; int og[N], os[N]; int cnt, cnt1, cnt2; int main() { while(cin >> num[cnt]) { if(num[cnt] % 2 == 0) og[cnt1 ++] = num[cnt ++]; else os[cnt2 ++] = num[cnt ++]; ...
sincerely_LM
2021年3月18日 20:30
快排划分思想来进行奇偶排序
P1248
回复 1
|
赞 3
|
浏览 10.1k
#include <iostream> #include <algorithm> using namespace std; bool Compare(const int &a,const int &b){ return a > b;//降序,前面的比后面大 } int main(int argc, char const *argv[]) { int A[100]={0}; while(cin>>A[0]>>A[1]>>A[2]>>A[3]>>A...
小酒
2024年3月17日 21:32
整数奇偶排序 题解:
P1248
回复 0
|
赞 1
|
浏览 644
1248解题思路:sort仍然YYDS #include <bits/stdc++.h> using namespace std; bool cmp(int a,int b) { return a>b; } int main() { int a[105]={0}; int b[105]={0}; for(int i=0;i<10;i++) { scanf("%d",&a[i]); } int j=0; for(int i=0;i<10;i++) { if(a[i]%2==0) ...
泛泛之交
2024年3月16日 16:42
整数奇偶排序 题解:
P1248
回复 0
|
赞 1
|
浏览 717
#include <bits/stdc++.h> using namespace std; bool cmp(int a,int b){ return a>b; } int main() { int n=10; int a[10]; while(cin>>a[0]>>a[1]>>a[2]>>a[3]>>a[4]>>a[...
1
2
3
题目
整数奇偶排序
题解数量
30
发布题解
在线答疑
热门题解
1
整数奇偶排序 题解:模板题
2
整数奇偶排序 题解:一个数组,sort巧妙解决
3
整数奇偶排序 题解:
4
整数奇偶排序 题解:SORT
5
快排划分思想来进行奇偶排序
6
整数奇偶排序(多组测试输入) 题解:
7
两个数组
8
整数奇偶排序 题解:
9
整数奇偶排序 题解:用俩数组分别打包奇偶数,再分别输出
10
亢龙有悔