reverse を使ってみる (C++)
C++
Published: 2019-12-16

やったこと

配列を反対順にするため、reverse 使ってみます。

確認環境

$ 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() {
    // 配列
    int a[] = {3, 5, 2};
    reverse(a, a + 3);

    for (int i = 0; i < 3; i++) {
        cout << a[i] << endl;
    }

    cout << endl;

    // vector
    vector<int> v = {2, 10, 8};
    reverse(v.begin(), v.end());

    for (int i = 0; i < 3; i++) {
        cout << v[i] << endl;
    }
}

出力結果

2
5
3

8
10
2

参考