std::count を使ってみる (C++)
C++
Published: 2020-04-05

確認環境

$ g++ --version
g++ (Homebrew GCC 9.2.0) 9.2.0
Copyright (C) 2019 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

調査

test.cpp

#include <bits/stdc++.h>
using namespace std;

int main() {
    vector<int> v = {3, 4, 3, 1, 2, 3};

    cout << "idx: 0 ~ 2 の範囲で 3 の数" << endl;
    cout << count(v.begin() + 0, v.begin() + 3, 3) << endl;

    cout << "idx: 0 ~ 1 の範囲で 3 の数" << endl;
    cout << count(v.begin() + 0, v.begin() + 2, 3) << endl;

    cout << "idx: 0 ~ 5 の範囲で 3 の数" << endl;
    cout << count(v.begin() + 0, v.begin() + 6, 3) << endl;
    cout << count(v.begin() + 0, v.end(), 3) << endl;

    cout << "idx: 2 ~ 5 の範囲で 3 の数" << endl;
    cout << count(v.begin() + 2, v.begin() + 6, 3) << endl;
}

出力結果

idx: 0 ~ 2 の範囲で 3 の数
2
idx: 0 ~ 1 の範囲で 3 の数
1
idx: 0 ~ 5 の範囲で 3 の数
3
3
idx: 2 ~ 5 の範囲で 3 の数
2

参考