给定字符串的列表按字母数字顺序或字典顺序排序。就像这些单词一样:Apple,Book,Aim,它们将被排序为Aim,Apple,Book,如果有一些数字,可以将它们放在字母字符串的前面。
Input: A list of strings: Ball Apple Data Area 517 April Man 506 Output: 排序后的字符串: 506 517 Apple April Area Ball Data Man
sortStr(strArr, n)
输入: 所有字符串的列表,元素数。
输出-字符串按字母数字排序。
Begin for round := 1 to n-1, do for i := 0 to n-round, do res := compare str[i] and str[i+1] //either +ve, or –ve or 0 if res > 0, then swap str[i] and str[i+1] done done End
#include<iostream>
#define N 8
using namespace std;
void display(int n, string str[]) {
for(int i = 0; i<n; i++)
cout << str[i] << " "; //print the string from array
cout << endl;
}
void sortStr(int n, string str[]) {
int i, round, res;
for(round = 1; round<n; round++)
for(i = 0; i<n-round; i++) {
res = str[i].compare(str[i+1]);
if(res > 0)
swap(str[i], str[i+1]);//swap strings
}
}
main() {
string str[N] = {"Ball", "Apple", "Data", "Area", "517", "April", "Man", "506"};
cout << "排序前的字符串:"<< endl;
display(N, str);
sortStr(N, str);
cout << "排序后的字符串:"<<endl;
display(N, str);
}输出结果
排序前的字符串: Ball Apple Data Area 517 April Man 506 排序后的字符串: 506 517 Apple April Area Ball Data Man