アフィリエイト広告を利用しています

広告

posted by fanblog

2018年02月26日

《その310》 sort関数(2)


 sort関数 による降順ソート

 今回は、sort関数を使って降順ソートを行います。使用する sort関数は、仮引数が3つのバージョンです。

  template <class RandomAccessIterator, class Compare>
  void sort(
    RandomAccessIterator first,
    RandomAccessIterator last,
    Compare comp
  );

 降順ソートの際、第3引数には、
  (1) <functional>ヘッダが提供する標準ファンクタ greater
  (2) greater と同じ bool 値を返却する独自ファンクタ
  (3) greater と同じ bool 値を返却する独自関数
  (4) greater と同じ bool 値を返却する独自ラムダ式
等を渡すことが可能です。

 以下、(1) 〜 (4) の4通りを、プログラムで確認します。

  (1) のプログラム例

#include <random>
#include <vector>
#include <functional>
#include <iostream>
using namespace std;

template<class InputIterator>
void disp(InputIterator first, InputIterator last) {
for (InputIterator i = first; i != last; i++)
cout << ' ' << *i;
}

int main() {
random_device rd;
vector<int> x;

cout << "◆ベクトルのシャッフルとソート\n";
for (unsigned i = 0; i < 10; i++)
x.push_back(i);

cout << "シャッフル前\n";
disp(x.begin(), x.end()); cout << "\n\n";

cout << "シャッフル後\n";
shuffle(x.begin(), x.end(), rd);
disp(x.begin(), x.end()); cout << "\n\n";

cout << "降順ソート後\n";
sort(x.begin(), x.end(), greater<int>());
disp(x.begin(), x.end()); cout << "\n\n";

cout << "◆通常の配列のシャッフルとソート\n";
char c[] = {
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'
};

cout << "シャッフル前\n";
disp(c, c + 8); cout << "\n\n";

cout << "シャッフル後\n";
shuffle(c, c + 8, rd);
disp(c, c + 8); cout << "\n\n";

cout << "降順ソート後\n";
sort(c, c + 8, greater<int>());
disp(c, c + 8); cout << '\n';
}


  (2) のプログラム例

#include <random>
#include <vector>
#include <iostream>
using namespace std;

template <class T>
struct f {
bool operator()(T a, T b) {
return a > b;
}
};


template<class InputIterator>
void disp(InputIterator first, InputIterator last) {
for (InputIterator i = first; i != last; i++)
cout << ' ' << *i;
}

int main() {
random_device rd;
vector<int> x;

cout << "◆ベクトルのシャッフルとソート\n";
for (unsigned i = 0; i < 10; i++)
x.push_back(i);

cout << "シャッフル前\n";
disp(x.begin(), x.end()); cout << "\n\n";

cout << "シャッフル後\n";
shuffle(x.begin(), x.end(), rd);
disp(x.begin(), x.end()); cout << "\n\n";

cout << "降順ソート後\n";
sort(x.begin(), x.end(), f<int>());
disp(x.begin(), x.end()); cout << "\n\n";

cout << "◆通常の配列のシャッフルとソート\n";
char c[] = {
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'
};

cout << "シャッフル前\n";
disp(c, c + 8); cout << "\n\n";

cout << "シャッフル後\n";
shuffle(c, c + 8, rd);
disp(c, c + 8); cout << "\n\n";

cout << "降順ソート後\n";
sort(c, c + 8, f<int>());
disp(c, c + 8); cout << '\n';
}


  (3) のプログラム例

#include <random>
#include <vector>
#include <iostream>
using namespace std;

template <class T>
bool f(T a, T b) { return a > b; }


template<class InputIterator>
void disp(InputIterator first, InputIterator last) {
for (InputIterator i = first; i != last; i++)
cout << ' ' << *i;
}

int main() {
random_device rd;
vector<int> x;

cout << "◆ベクトルのシャッフルとソート\n";
for (unsigned i = 0; i < 10; i++)
x.push_back(i);

cout << "シャッフル前\n";
disp(x.begin(), x.end()); cout << "\n\n";

cout << "シャッフル後\n";
shuffle(x.begin(), x.end(), rd);
disp(x.begin(), x.end()); cout << "\n\n";

cout << "降順ソート後\n";
sort(x.begin(), x.end(), f<int>);
disp(x.begin(), x.end()); cout << "\n\n";

cout << "◆通常の配列のシャッフルとソート\n";
char c[] = {
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'
};

cout << "シャッフル前\n";
disp(c, c + 8); cout << "\n\n";

cout << "シャッフル後\n";
shuffle(c, c + 8, rd);
disp(c, c + 8); cout << "\n\n";

cout << "降順ソート後\n";
sort(c, c + 8, f<int>);
disp(c, c + 8); cout << '\n';
}


  (4) のプログラム例

#include <random>
#include <vector>
#include <iostream>
using namespace std;

template<class InputIterator>
void disp(InputIterator first, InputIterator last) {
for (InputIterator i = first; i != last; i++)
cout << ' ' << *i;
}

int main() {
random_device rd;
vector<int> x;

cout << "◆ベクトルのシャッフルとソート\n";
for (unsigned i = 0; i < 10; i++)
x.push_back(i);

cout << "シャッフル前\n";
disp(x.begin(), x.end()); cout << "\n\n";

cout << "シャッフル後\n";
shuffle(x.begin(), x.end(), rd);
disp(x.begin(), x.end()); cout << "\n\n";

cout << "降順ソート後\n";
sort(x.begin(), x.end(), [](int a, int b) { return a > b; });
disp(x.begin(), x.end()); cout << "\n\n";

cout << "◆通常の配列のシャッフルとソート\n";
char c[] = {
'a', 'b', 'c', 'd', 'e', 'f', 'g', 'h'
};

cout << "シャッフル前\n";
disp(c, c + 8); cout << "\n\n";

cout << "シャッフル後\n";
shuffle(c, c + 8, rd);
disp(c, c + 8); cout << "\n\n";

cout << "降順ソート後\n";
sort(c, c + 8, [](char a, char b) { return a > b; });
disp(c, c + 8); cout << '\n';
}


 (1) 〜 (4) の出力結果は、すべて同じです。
 ただし、シャッフルに、擬似乱数ではなく random_device を用いているので、シャッフル後の並びは実行の度に異なります。
g10_0058.png



この記事へのコメント
コメントを書く

お名前:

メールアドレス:


ホームページアドレス:

コメント:

※ブログオーナーが承認したコメントのみ表示されます。

この記事へのトラックバックURL
https://fanblogs.jp/tb/7364957
※ブログオーナーが承認したトラックバックのみ表示されます。

この記事へのトラックバック

 たまに、クリック お願いします m(_ _)m

 AA にほんブログ村 IT技術ブログ C/C++へ

こうすけ:メール kousuke_cpp@outlook.jp

【1】★★C++ 記事目次★★ ← 利用可能です。
・新版明解C++入門編 / 新版明解C++中級編
・その他 C++ 関連記事

【2】★★こうすけ@C#★★
・C# の初歩的な記事


検索
<< 2018年08月 >>
      1 2 3 4
5 6 7 8 9 10 11
12 13 14 15 16 17 18
19 20 21 22 23 24 25
26 27 28 29 30 31  
プロフィール
こうすけさんの画像
こうすけ

 たまに、クリック お願いします m(_ _)m

 AA にほんブログ村 IT技術ブログ C/C++へ

こうすけ:メール kousuke_cpp@outlook.jp

【1】★★C++ 記事目次★★ ← 利用可能です。
・新版明解C++入門編 / 新版明解C++中級編
・その他 C++ 関連記事

【2】★★こうすけ@C#★★
・C# の初歩的な記事


×

この広告は30日以上新しい記事の更新がないブログに表示されております。