首页
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
dhh390
2025年3月20日 17:12
字符串排序2 题解:同样用冒泡排序,只不过需要在冒泡排序加一些特殊处理
P1255
回复 0
|
赞 1
|
浏览 118
#include <stdio.h> #include <string.h> #include<stdlib.h> #include<math.h> int main() { char s[1000]; fgets(s,999,stdin); int len=strlen(s); if(len>0&&s[len-1]=='\n') &...
zhangs
2025年3月18日 14:42
字符串排序2 题解:
P1255
回复 0
|
赞 6
|
浏览 159
//c语言插入排序 #include <stdio.h> #include <stdlib.h> #include <string.h> char g(char c){ if(c>='A'&&c<='Z') return c+32; else if(c>='a'&&c<='z') return c; ...
gxtbdarkness
2025年3月16日 17:24
字符串排序2 题解:链表解
P1255
回复 0
|
赞 0
|
浏览 59
#include <bits/stdc++.h> using namespace std; typedef struct node{ char e; struct node *link; }Node; Node* getNode(char e){ Node *node = (Node*)malloc(sizeof(Node)); node->e = e; n...
RingoCrystal
2025年1月27日 15:45
字符串排序2 题解:stablesort,大小写同时排序
P1255
回复 1
|
赞 35
|
浏览 652
#include <bits/stdc++.h> using namespace std; bool compare(char c,char b){ if(c>='A'&&c<='Z')c=c-'A'+'a'; if(b>='A'&&b<='Z')b=b-'A'+'a'; return c<b; } int main(){ string s; while(getline(cin,s)){ string c; f...
zxjrheaven
2025年3月15日 01:01
字符串排序2 题解:暴力,确实是好题
P1255
回复 0
|
赞 3
|
浏览 187
#include <bits/stdc++.h> using namespace std; bool cmp(char a,char b) { if(a>='a'&&a<='z')a=a-32; if(b>='a'&&b<='z')b=b-32; return a<b; } int main() { ...
西电机试专家
2025年3月13日 21:47
字符串排序2 题解:好题
P1255
回复 0
|
赞 7
|
浏览 93
#include <bits/stdc++.h> using namespace std; bool compare(char a,char b){//仅比较字母,非字母不予处理 if(a>='A'&&a<='Z')a+=32; if(b>='A'&&b<='Z')b+=32; return a<b; } int main(){ ...
GENARDING
2025年3月12日 20:57
在前人的基础上又优化了一下,应该是最简易懂了
P1255
回复 0
|
赞 7
|
浏览 170
#include <bits/stdc++.h> using namespace std; bool compare(char c, char b) { return tolower(c) < tolower(b); // 忽略大小写排序 } int main() { string s; while (getline(cin, s)) { string c; for (char x : s) { if (isalpha(x)) c += x; } ...
Theeastisred
2025年3月12日 11:33
字符串排序2 题解:stable_sort()为什么是神
P1255
回复 0
|
赞 3
|
浏览 117
#include<bits/stdc++.h> using namespace std; vector<int>w('z'+1,0); bool cmp(char a,char b){ if(w[a]<w[b]) return true; return false; } int main(){ string s; for(int i=0;i<w.size();i++) ...
固态氧化碳
2025年2月15日 16:49
字符串排序2 题解:借鉴了前人的做法
P1255
回复 0
|
赞 11
|
浏览 320
#include<bits/stdc++.h> using namespace std ; bool cmp (char c, char b) //这串代码是为了将字符串中的大写字母转换成小写统一进行排序比较 { if(c>='A'&&c<='Z')c=c+32; if(b>='A'&&b<='Z')b=b+32; return c<...
可可爱爱草莓派
2024年8月26日 21:13
参考大家的简化了cmp
P1255
回复 0
|
赞 27
|
浏览 1.8k
#include <bits/stdc++.h> using namespace std; bool cmp(char a, char b) { return tolower(a) < tolower(b); } char c[1010];//用于存储a-z和A-Z的字符。 int flag[1010];//用于标记哪一位为非字符。 int main() { string s; getline(cin ,s); int len = s....
1
2
3
题目
字符串排序2
题解数量
21
发布题解
在线答疑
热门题解
1
字符串排序2 题解:stablesort,大小写同时排序
2
参考大家的简化了cmp
3
字符串排序2 题解:借鉴了前人的做法
4
简洁
5
字符串排序2 题解:c++借鉴某位题解,并加入了自己理解注释
6
每个规则制定一种策略
7
在前人的基础上又优化了一下,应该是最简易懂了
8
字符串排序2 题解:好题
9
使用stable_sort稳定排序
10
字符串排序2 题解: