主站
DreamJudge
院校信息
专业题库
模拟考试
机试真题
专业课程
答疑区
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
FAFAFAFA
2024年3月28日 15:09
数组排序 题解:
P1798
回复 0
|
赞 0
|
浏览 548
#include<bits/stdc++.h> using namespace std; int main(){ int a[1000]; char s; int i=0; while(cin>>a[i++]){ cin>>s; if(s...
huanghu
2024年3月24日 18:01
数组排序 题解:c++ 复杂
P1798
回复 0
|
赞 0
|
浏览 500
#include <iostream> #include <vector> #include<string> #include<algorithm> using namespace std; int main(){ string str; cin>>str; int len = str.length(); int arr[1000] = {0}; int st = 0; string s = ""; for(int i = 0; i<len; i++){ if(str...
DestinyCares+++
2024年3月20日 18:57
数组排序 题解:isdigit()函数判断该字符串是否为数字字符串
P1798
回复 0
|
赞 0
|
浏览 414
#include<iostream> #include<cstring> #include<string> #include<vector> #include<queue> #include<stack> #include<algorithm> using namespace std; const int maxn = 10000 + 5; vector<int> v; int getnumber(string str, int& index) { &nb...
孙某人
2024年3月18日 19:23
数组排序 题解:求大佬帮忙看看,一直过不去,不知道怎么错了
P1798
回复 2
|
赞 0
|
浏览 601
#include<iostream> #include <algorithm> #include <string.h> using namespace std; int main(){ int n,flag=0,c=0; char a[10005]; int b[10005]; for(int i=0;i<1005;i++) b[i]=0; gets(a); int len=strlen(a); for(int i=0;i<len;i++){ if(a[i]==','){ i...
杜小满
2024年3月5日 12:59
数组排序 题解:用istringstream
P1798
回复 0
|
赞 0
|
浏览 468
#include<iostream> #include<cmath> #include <vector> #include <string> #include<iomanip> #include<cctype> #include <algorithm> #include <sstream> using namespace std; int main() { string line; &nb...
小王桐学
2024年2月27日 17:00
数组排序 题解:C
P1798
回复 0
|
赞 0
|
浏览 636
#include <stdio.h> #include <string.h> //排序 void Sort(int a[],int n) { int i,j,t; for(i = 0; i < n-1; i++) for(j = 1; j < n-i; j++) if(a[j] < a[j-1]) { t = a[j]; a[j] = a[j-1]; a[j-1] = t; } } int main() { int a[10000],i = 0,j,n...
My_opt
2022年4月30日 13:49
c++
P1798
回复 0
|
赞 0
|
浏览 5.6k
#include <iostream> #include <algorithm> using namespace std; int x, cnt; vector<int> s; int main() { char a; while (cin >> x) { s.push_back(x); cin >> a; } sort(s.begin(), s.end()); for (auto& x : s) { cout << x; ...
老猫
2021年1月31日 10:00
简洁
P1798
回复 0
|
赞 2
|
浏览 9.3k
#include<cstdio> #include <vector> #include <string> #include <string.h> #include<iostream> #include<algorithm> using namespace std; int n,m; int main() { vector<int>a; int n,len; while(scanf("%d",&n)!=EOF) { a.push_back(n); /...
题目
数组排序
题解数量
8
发布题解
热门题解
1
简洁
2
数组排序 题解:C
3
c++
4
数组排序 题解:用istringstream
5
数组排序 题解:求大佬帮忙看看,一直过不去,不知道怎么错了
6
数组排序 题解:c++ 复杂
7
数组排序 题解:isdigit()函数判断该字符串是否为数字字符串
8
数组排序 题解: