「boost::count」の版間の差分
提供: C++入門
細 (Daemon がページ「Boost::count」を「boost::count」に移動しました) |
(→関連項目) |
||
行82: | 行82: | ||
== 関連項目 == | == 関連項目 == | ||
+ | * [[std::count]] | ||
+ | * [[std::count_if]] | ||
+ | * [[C++ライブラリ]] |
2013年12月26日 (木) 11:37時点における最新版
読み方
- boost::count
- ぶーすと かうんと
概要
std::vector の中に、ある値が何個存在するか確認する方法として、boost::countが利用できます。
std::vectorの値を数える例
ソースコード boost_count_vector.cpp
#include <iostream> #include <boost/foreach.hpp> #include <vector> #include <boost/range/algorithm.hpp> using namespace std; void dump(vector<int>& v) { BOOST_FOREACH(int x, v) { cout << x << endl; } } int main (int argc, char *argv[]) { vector<int> v; v.push_back ( 3 ); v.push_back ( 4 ); v.push_back ( 1 ); v.push_back ( 2 ); v.push_back ( 1 ); v.push_back ( 1 ); v.push_back ( 2 ); cout << "Dump vector" << std::endl; dump (v); int find1 = boost::count(v, 1); int find2 = boost::count(v, 2); cout << "Found 1: " << find1 << std::endl; cout << "Found 2: " << find2 << std::endl; return 0; }
コンパイル
g++ -I/usr/local/include boost_count_vector.cpp -o boost_count_vector
実行例
% ./boost_count_vector Dump vector 3 4 1 2 1 1 2 Found 1: 3 Found 2: 2