首页
DreamJudge
院校信息
专业题库
模拟考试
机试真题
上岸课程
兑换中心
登录
注册
上岸
以下题解仅供学习参考使用。
抄袭、复制题解,以达到刷AC率/AC数量或其他目的的行为,在N诺是严格禁止的。
N诺非常重视学术诚信。此类行为将会导致您成为作弊者。具体细则请查看N诺社区规则。
山崎友希
2025年3月17日 17:34
字符串排序3 题解:
P1261
回复 0
|
赞 5
|
浏览 148
#include<stdio.h> #include<string.h> int main(){ int n; while( ( scanf("%d",&n) )!=EOF ){//实现多组输入输出 char s1[100][100]; int i=0; char t; char temp[100...
zxjrheaven
2025年3月14日 20:04
字符串排序3 题解:暴力结构体(无容器)
P1261
回复 0
|
赞 2
|
浏览 200
#include <bits/stdc++.h> using namespace std; struct node { string str; int cd; }jilu[10005]; bool cmp(node a,node b) { return a.cd<b.cd; } int main() { int n; while(cin>...
Elysiaaaaaaa
2025年3月14日 13:48
字符串排序3 题解:
P1261
回复 0
|
赞 4
|
浏览 102
#include<bits/stdc++.h> using namespace std; int main() { int n; 思想:把字符串的长度作为map的key,自动排序 while (cin >> n) { cin.ignore(10000, '...
yeee700
2025年3月13日 13:32
字符串排序3 题解:
P1261
回复 0
|
赞 2
|
浏览 127
在CodeBlocks上能正常运行,为啥在OJ上老是显示Presentation Error(格式错误),有大佬指点吗 #include<stdio.h> #include<string.h> #include<stdlib.h> int cmp(const void *a,const void*b){ char *pa=(char *)a; char *pb=(char*)b; return strlen(pa)-strlen(pb); } int main(){ int n; ...
奥里给
2025年3月12日 19:33
字符串排序3 题解:
P1261
回复 0
|
赞 3
|
浏览 141
#include<iostream> #include<string> #include<algorithm> using namespace std; // 定义结构体,存储字符串的长度和索引 typedef struct node { int len; // 字符串的长度 int index; // 字符串在数组中的索引 } node; string s[1000]; // 存储输入的字符串 int t; &n...
GENARDING
2025年3月10日 12:49
字符串排序3 题解:使用vector +sort(),此方法适用于多种
P1261
回复 0
|
赞 12
|
浏览 179
使用vector +sort(),此方法适用于多种场景,对此不熟悉的可记为这类相关问题的通解 #include <bits/stdc++.h> using namespace std; // 自定义比较函数 bool cmp(const string &a,const string &b){ if(a.length()==b.length()){ return a<b; } return a.length()<b.length(); } int main() { int n; vec...
GENARDING
2025年3月10日 12:37
字符串排序3 题解:
P1261
回复 0
|
赞 3
|
浏览 142
使用vector +sort(),此方法适用于多种场景,对此不熟悉的可记为这类相关问题的通解 #include <bits/stdc++.h> using namespace std; // 自定义比较函数 bool cmp(const string &a,const string &b){ if(a.length()==b.length()){ return a<b; } return a.length()<b.length(); } int main() { int n; vec...
ASDF807
2025年3月7日 18:44
字符串排序3 题解:OutPut Limit Exceeded 为啥?
P1261
回复 2
|
赞 2
|
浏览 182
#include<stdio.h> #include<string.h> int main() { int n; while(scanf("%d",&n)!=EOF) { char str[100][100]; int num[n]; int x=0;&nbs...
RingoCrystal
2025年1月27日 13:15
字符串排序3 题解:getchar compare自定义
P1261
回复 0
|
赞 9
|
浏览 425
#include <bits/stdc++.h> using namespace std; bool compare(string a,string b){ return a.size()<b.size(); } int main(){ int n; while(cin>>n){ getchar(); vector<string> a; for(int i=0;i<n;i++){ string s;getline...
可可爱爱草莓派
2024年8月26日 21:44
注意使用getchar写cmp函数 size() 比较大小就可以了
P1261
回复 0
|
赞 25
|
浏览 1.5k
#include<bits/stdc++.h> using namespace std; string s[110]; bool cmp(string a,string b){ return a.size() < b.size(); } int main(){ int n; while(cin >> n){ int k = 0; getchar(...
1
2
3
题目
字符串排序3
题解数量
23
发布题解
在线答疑
热门题解
1
注意使用getchar写cmp函数 size() 比较大小就可以了
2
字符串排序3 题解:使用vector +sort(),此方法适用于多种场景
3
字符串排序3 题解:getchar compare自定义
4
字符串排序3(C++) 题解:
5
字符串排序3 题解 使用getline前需要用getchar()吸收换行符
6
getline与cin一起使用的问题
7
字符串排序3 题解:
8
字符串排序3 题解:
9
字符串排序3 题解:
10
字符串排序3 题解: