1

2D 配列 (列) から平均を生成できます。私は理解できませんが、その平均をどのようにソートするか。新しい配列 ( rankedscore[]) を作成する必要があります。

どんな助けでも大歓迎です:

int rankedArtist() // ranked artist based on score
{
    const int A1_SIZE = 5,  A2_ROWSIZE =5, A2_COLSIZE =10;
    string Artist[A1_SIZE]={ "Degas", "Holbien", "Monet", "Matisse", "Valesquez" };
    int Scores[A2_ROWSIZE][A2_COLSIZE] = {{5,5,6,8,4,6,8,8,8,10},{8,8,8,8,8,8,8,8,8,8},
    {10,10,10,10,10,10,10,10,10,10},{5,0,0,0,0,0,0,0,0,0},{5,6,8,10,4,0,0,0,0,0}};

    cout << "\n\n\t-------------------------------------------" << endl;
    cout << "\t\tRanking by Artist"<< endl;
    cout << "\t===========================================" << endl;

    int total = 0;
    float faverage;
    double AverageScore[5];
    double average;
    double rankedscore[A2_ROWSIZE];


    for (int x=0; x<5; x++)
    {
        cout << "\n\t" << Artist[x] << "\t\t";

        for (int col = 0; col < A2_COLSIZE; col++)
        {
            total+=Scores[x][col];
        }
        faverage = (float)total / 10.0f;

        average = total = 0;
        AverageScore[x] = faverage;
    }
}
4

2 に答える 2

1

私は理解できませんが、その平均をどのようにソートするか。

a を使用しstd::pairて、アーティストをスコアにマッピングします。次にstd::sort、並べ替えを実装するために使用します。

#include <vector>
#include <utility>
#include <string>
#include <algorithm>
#include <iostream>

int main()
{
    std::vector<std::string> artists{ "Degas", "Holbien", "Monet", "Matisse", "Valesquez" };
    std::vector<std::vector<int>> scores{{ 3, 2, 1 }, { 5, 4, 3 }};

    std::vector<std::pair<std::string, int>> chart;

    for (auto name = artists.begin(); name != artists.end(); ++name)
    {
        for (auto score = scores.begin(); score != scores.end(); ++score)
        {
            int total = std::accumulate(score->begin(), score->end(), 0);
            int average = total  / score->size();
            chart.push_back(std::make_pair(*name, average));
        }
    }

    struct
    {
        bool operator()(std::pair<std::string, int> p1, std::pair<std::string, int> p2) const
        {
            return p1.second < p2.second;
        }
    } Predicate;

    std::sort(chart.begin(), chart.end(), Predicate);

    for (auto it = chart.begin(); it != chart.end(); ++it)
    {
         std::cout << it->first << ": " << it->second << std::endl;
    }
}
于 2013-09-16T23:13:22.987 に答える
0

std::sortランクスコア配列をソートするために使用できます。その後、for ループを作成し、その値を出力します。

ここで使用方法の例を表示できますstd::sort

編集: RankedScore と Artists は関連している必要があるため、マップ構造を使用できます。平均スコアをキーとして使用します。次に、マップをキーでソートし、キー値 (アーティスト) を順番に出力できます。

于 2013-09-16T22:58:45.863 に答える