小编典典

如何反转 C++ 向量?

all

C++ 中是否有内置的向量函数来反转向量?

还是您只需要手动完成?


阅读 61

收藏
2022-07-17

共1个答案

小编典典

为此目的,标题中std::reverse有一个功能。algorithm

#include <vector>
#include <algorithm>

int main() {
  std::vector<int> a;
  std::reverse(a.begin(), a.end());
  return 0;
}
2022-07-17