內(nèi)容同步于我的博客:https://blog.bigrats.net/archives/basic-alg-string-sort.html
題目描述
給定n個(gè)字符串澜汤,請(qǐng)對(duì)n個(gè)字符串按照字典序排列靠欢。
輸入描述
輸入第一行為一個(gè)正整數(shù)n(1≤n≤1000),下面n行為n個(gè)字符串(字符串長(zhǎng)度≤100),字符串中只含有大小寫字母放妈。
輸出描述
數(shù)據(jù)輸出n行,輸出結(jié)果為按照字典序排列的字符串湿右。
示例
Input:
9
cap
to
cat
card
two
too
up
boat
boot
Output:
boat
boot
cap
card
cat
to
too
two
up
問題分析
對(duì)于這類簡(jiǎn)單的排序問題巴席,可以直接使用STL庫(kù)中的sort()函數(shù)即可。
算法描述
無
代碼
#include <cstdio>
#include <cstdlib>
#include <cstring>
#include <algorithm>
using namespace std;
bool mstrcmp(char *a, char* b) {
int i = 0;
for(i = 0; i < strlen(a) && i < strlen(b); i++) {
if(a[i] < b[i]) return true;
else if(a[i] > b[i]) return false;
else continue;
}
if(i < strlen(a)) return false;
return true;
}
int main() {
int n;
char *words[1000];
while(scanf("%d", &n) != EOF) {
for(int i = 0; i < n; i++) {
words[i] = (char*)malloc(100*sizeof(char));
scanf("%s", words[i]);
}
sort(words, words + n, mstrcmp);
for(int i = 0; i < n; i++) {
printf("%s\n", words[i]);
}
}
return 0;
}