0

整数の配列の配列をベクトルに変換してソートしました。

#include<iostream>
#include<algorithm>
//#include <sstream>
#include <vector>
#include <iterator>
#include <iomanip>

using namespace std ;
int kj;
int aRawdata [3] [4] =  {{1,0,37,52},{2,0,49,49}, {3,0,52,64}};
int aSolution[3] [4];
int main()
{

 //copy aRawdata to aSolution
    copy(&aRawdata[0][0], &aRawdata[0][0] + 3*4, &aSolution[0][0]);     

    // insering a random number into the second column of aSolution; the column which would be base of the sort
    for ( kj = 0 ; kj < 3 ; kj++)
    {       
        aSolution [kj] [1] =  rand();
    }   
    // converting aSolution  into vector (my_vector)     
        {// start sort using the vectors
        vector< vector<int> > my_vector ;
        for( const auto& row : aSolution ) my_vector.push_back( vector<int>( begin(row), end(row) ) ) ;
        sort( begin(my_vector), end(my_vector),
                   []( const vector<int>& a, const vector<int>& b ) { return a[1] < b[1] ; } ) ;    
        // for Copying a “vector of vector” into“ array of array”
        for (size_t row = 0; row < my_vector.size(); ++row) {
            copy(my_vector[row].begin(), my_vector[row].end(), aSolution[row]);
}       // print 
        for( const auto& row : aSolution )
        {
            for( int v : row ) cout << setw(10) << v ;
            cout << '\n' ;
        }

    }
}

2 つの質問があります。

  1. my_vector (ソートされたベクトル) のデータを aSolution に再度コピーして、ソートされた aSolution 配列にする方法を教えてください。
  2. ベクトルを使用せずに aSolution を直接ソートするにはどうすればよいですか? (並べ替えは、aSolution の 2 番目の列に基づいて行われます)。よろしく。
4

1 に答える 1