如何逆转C ++向量? [英] How do I reverse a C++ vector?

查看:158
本文介绍了如何逆转C ++向量?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

是否有一个内置的向量函数在C ++中反转向量的位置?

Is there a built-in vector function in C++ to reverse a vector in place?

还是你只需要手动做?

推荐答案

算法中有一个函数 std :: reverse / code>标题。

There's a function std::reverse in the algorithm header for this purpose.

#include <vector>
#include <algorithm>

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

这篇关于如何逆转C ++向量?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆