1. ホーム
  2. c++

[解決済み] 文字列をアルファベット順に並べるには?

2022-03-02 06:01:12

質問

このc++プログラムを使って、5人の名前をアルファベット順に並べ替えようとしています。

#include <iostream>
#include <cstring>
#include <conio.h>
using namespace std;

int main()
{
char names[5][100];
int x,y,z;

char exchange[100];

cout << "Enter five names...\n";

for(x=1;x<=5;x++)
{
    cout << x << ". ";
    cin >> names[x-1];
}
getch();

for(x=0;x<=5-2;x++)
{
    for(y=0;y<=5-2;y++)
    {
        for(z=0;z<=99;z++)
        {
            if(int(names[y][z])>int(names[y+1][z]))
            {   
                strcpy(exchange,names[y]);
                strcpy(names[y],names[y+1]);
                strcpy(names[y+1],exchange);
                break;
            }
        }   
    }
}   

for(x=0;x<=5-1;x++)
    cout << names[x];

return 0;
}

Earl、Don、Chris、Bill、Andyをそれぞれ入力すると、こうなります。

AndyEarlDonChrisBill

誰か、私のプログラムのどこが悪いか教えてください。

解決方法は?

文字列の std::set または std::multiset (繰り返しの項目を許可する場合) を使用すると、項目は自動的にソートされます (必要ならソートの基準を変更することもできます)。

#include <iostream>
#include <set>
#include <algorithm>

void print(const std::string& item)
{
    std::cout << item << std::endl;
}

int main()
{
    std::set<std::string> sortedItems;

    for(int i = 1; i <= 5; ++i)
    {
        std::string name;
        std::cout << i << ". ";
        std::cin >> name;

        sortedItems.insert(name);
    }

    std::for_each(sortedItems.begin(), sortedItems.end(), &print);
    return 0;
}

を入力します。

  1. ジェラルド
  2. カルロス
  3. カミロ
  4. エンジェル
  5. ボスコ

を出力します。

Angel
Bosco
Carlos
Gerardo
Kamilo