C++标准模板库vector的常用操作

 更新时间:2018年12月21日 11:08:42   作者:蜗牛201  
今天小编就为大家分享一篇关于C++标准模板库vector的常用操作,小编觉得内容挺不错的,现在分享给大家,具有很好的参考价值,需要的朋友一起跟随小编来看看吧

脚本之家 / 编程助手:解决程序员“几乎”所有问题!
脚本之家官方知识库 → 点击立即使用

一:介绍

vector是C++标准模板库,是一个容器,底层是数组,为连续内存。

命名空间为std,所属头文件为<vector>   注意:不是<vector.h>

vector存储数据时,会分配一个存储空间,如果继续存储,该分配的空间已满,就会分配一块更大的内存,把原来的数据复制过来,继续存储,这些性能也会一定程度上会有损耗

二:常用操作

容量:

  • a.vector大小:vector.size()
  • b.vector所占内存实际大小:vector.capacity()

修改:

  • a.尾部添加元素:vector.push_back()
  • b.尾部删除元素:vector.pop_back()
  • c.交换两个vector元素:vector.swap()
  • d.清空vector元素:vector.clear()
  • e.删除指定元素:vector.erase(it)

迭代器:

  • a.vector开始指针:vector.begin()
  • b.vector尾部指针:vector.end()   注:最后一个元素的下一个位置,类似为NULL,不是容器的最后一个元素

访问元素:

  • a.下标访问:vector[1]  //不检查是否越界
  • b.at方法访问:vector.at(1) //自动检查是否越界,如越界会抛出异常
  • c.访问第一个元素:vector.front()
  • d.访问最后一个元素:vector.back()

三:存储

简单存储

1
2
3
4
5
6
7
8
9
10
11
12
//存储方式1
vector<int> v1(10);
for (int i=0; i<10; i++)
{
  v1[i] = i;
}
//存储方式2
vector<int> v2;
for (int i=0; i<10; i++)
{
  v2.push_back(i);
}

存储结构体和结构体指针

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
struct Student
{
  char name[32];
  int age;
};
//存储结构体
vector<Student> vStu1;
for (int i=0; i<10; i++)
{
  Student stu;
  strcpy(stu.name, "woniu201");
  stu.age = 30 + i;
  vStu1.push_back(stu);
}
//存储结构体指针
vector<Student*> vStu2;
for (int i=0; i<10; i++)
{
  Student* pStu = (Student*)malloc(sizeof(Student));
  strcpy(pStu->name, "woniu201");
  pStu->age = 30 + i;
  vStu2.push_back(pStu);
}

四:vector遍历

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
vector<int> v;
for (int i=0; i<100; i++)
{
  v.push_back(i);
}
//遍历方式1
for (int i=0; i<100; i++)
{
  int& a = v[i];
  printf("%d ", a);
}
//遍历方式2
for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
{
  int&a = *it;
  printf("%d ", a);
}

五:排序

对vector整形进行排序

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
#include "stdlib.h"
#include <vector>
#include <algorithm>
using namespace std;
//升序比较函数
int compare1(const int &a, const int &b)
{
  return a < b;
}
//降序比较函数
int compare2(const int &a, const int &b)
{
  return a > b;
}
int main()
{
  vector<int> v;
  for (int i=0; i<10; i++)
  {
    v.push_back(rand() % 10);
  }
  //遍历输出
  printf("排序前数据:");
  for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
  {
    printf("%d ", *it);
  }
  //升序排序
  sort(v.begin(), v.end(), compare1);
  //遍历输出
  printf("\n升序后数据:");
  for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
  {
    printf("%d ", *it);
  }
  //降序排序
  sort(v.begin(), v.end(), greater<int>());
  //遍历输出
  printf("\n降序后数据:");
  for (vector<int>::iterator it = v.begin(); it != v.end(); it++)
  {
    printf("%d ", *it);
  }
  getchar();
  return 1;
}

对存放类成员变量排序

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#include <string>
#include <vector>
#include <algorithm>
using namespace std;
class Student {
public
  Student(string n, int c) :name(n), core(c) {}
  string  name;
  int    core;
};
//升序比较函数
bool compare1(const Student& s1, const Student& s2)
{
  return s1.core < s2.core;
}
//降序比较函数
bool compare2(const Student& s1, const Student& s2)
{
  return s1.core > s2.core;
}
int main()
{
  vector<Student> v;
  Student s1("aaaa", 97);
  Student s2("bbbb", 99);
  Student s3("cccc", 95);
  v.push_back(s1);
  v.push_back(s2);
  v.push_back(s3);
  printf("排序前数据:\n");
  for (vector<Student>::iterator it = v.begin(); it != v.end(); it++)
  {
    printf("%s; %d\n", ((*it).name).c_str(), (*it).core);
  }
  //升序排序
  sort(v.begin(), v.end(), compare1);
  printf("\n升序后的数据:\n");
  for (vector<Student>::iterator it = v.begin(); it != v.end(); it++)
  {
    printf("%s; %d\n", ((*it).name).c_str(), (*it).core);
  }
  //降序排序
  sort(v.begin(), v.end(), compare2);
  printf("\n降序后的数据:\n");
  for (vector<Student>::iterator it = v.begin(); it != v.end(); it++)
  {
    printf("%s; %d\n", ((*it).name).c_str(), (*it).core);
  }
  getchar();
  return 1;
}

六:查找

1
2
3
4
5
6
7
8
9
vector<int>::iterator it = find(v.begin(), v.end(), 5);
if(it != v.end())
{
  cout << "found";
}
else
{
  cout << "not found";
}

七:删除

1
2
3
4
5
6
7
8
for(vector<int>::iterator it=v.begin(); it != v.end(); it++)
{
  if(*it == 8)
  {
    it = v.erase(it);//it会++一次
    it--;    //删除完后需要--,否则最终循环越界
  }
}

八:释放内存

存放整形vector释放

1
2
3
4
5
6
7
8
9
10
11
//存放整型
vector<int> v;
for (int i=0; i<100; i++)
{
v.push_back(i);
}
 //释放内存
 {
   vector<int> vEmpty;
   v.swap(vEmpty);
 }

存放结构体vector释放

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//存储结构体
vector<Student> vStu1;
for (int i=0; i<10; i++)
{
Student stu;
strcpy(stu.name, "woniu201");
stu.age = 30 + i;
vStu1.push_back(stu);
}
//释放内存 
   {
     vector<Student>
   }
vector<Student> vEmpty;
    vStu1.swap(vEmpty);

存放结构体指针vector释放

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//存储结构体指针
vector<Student*> vStu2;
for (int i=0; i<10; i++)
{
Student* pStu = (Student*)malloc(sizeof(Student));
strcpy(pStu->name, "wangpengfei");
pStu->age = 30 + i;
vStu2.push_back(pStu);
}
//释放内存
for (vector<Student*>::iterator it = vStu2.begin(); it != vStu2.end(); it++)
{
if (NULL != *it)
{
 delete *it;
 *it = NULL;
}
}

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,谢谢大家对脚本之家的支持。如果你想了解更多相关内容请查看下面相关链接

蓄力AI

微信公众号搜索 “ 脚本之家 ” ,选择关注

程序猿的那些事、送书等活动等着你

原文链接:https://blog.csdn.net/woniu211111/article/details/75530501

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如若内容造成侵权/违法违规/事实不符,请将相关资料发送至 reterry123@163.com 进行投诉反馈,一经查实,立即处理!

相关文章

  • C++ namespace命名空间解析

    C++ namespace命名空间解析

    考虑一种情况,当我们有两个同名的人,Zara,在同一个班里。当我们需要对它们进行区分我们必须使用一些额外的信息和它们的名字,比如它们生活在不同的区域或者兴趣爱好什么的,在C++程序中也会遇到同样的情况,所以命名空间就此产生
    2021-11-11
  • 详解C++编程中对二进制文件的读写操作

    详解C++编程中对二进制文件的读写操作

    这篇文章主要介绍了C++编程中对二进制文件的读写操作,是C++入门学习中的基础知识,需要的朋友可以参考下
    2015-09-09
  • C语言三子棋游戏的简单设计

    C语言三子棋游戏的简单设计

    这篇文章主要为大家详细介绍了C语言三子棋游戏的简单设计,文中示例代码介绍的非常详细,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2021-10-10
  • C++报错`Null Pointer Dereference`的解决方法

    C++报错`Null Pointer Dereference`的解决方法

    在软件开发中,Null Pointer Dereference 是一种常见的错误,它发生在程序试图访问或操作一个空指针指向的内存位置时,这种情况通常会导致程序崩溃,给 debug 工作带来很大困扰,今天,我们将探讨如何解决 Null Pointer Dereference 报错,需要的朋友可以参考下
    2024-07-07
  • C++程序中添加.c.h的实现方法

    C++程序中添加.c.h的实现方法

    这篇文章主要介绍了C++程序中添加.c.h的实现方法,具有很好的参考价值,希望对大家有所帮助,如有错误或未考虑完全的地方,望不吝赐教
    2023-08-08
  • 超详细解析C++实现快速排序算法的方法

    超详细解析C++实现快速排序算法的方法

    快速排序是比较快的排序方法。它的基本思想是通过一组排序将要排序的数据分割成独立的两部分,本文将用C++实现快速排序算法,需要的可以参考一下
    2022-09-09
  • C++实现获取IP、子网掩码、网关、DNS等本机网络参数的方法

    C++实现获取IP、子网掩码、网关、DNS等本机网络参数的方法

    这篇文章主要介绍了C++实现获取IP、子网掩码、网关、DNS等本机网络参数的方法,需要的朋友可以参考下
    2014-07-07
  • 数组中求第K大数的实现方法

    数组中求第K大数的实现方法

    本篇文章是对数组中求第K大数的实现方法进行了详细的分析介绍,需要的朋友参考下
    2013-05-05
  • C/C++检测文件是否存在的常见方法

    C/C++检测文件是否存在的常见方法

    在C和C++中,检测文件是否存在的方法通常涉及到平台特定的API或者使用标准库的功能(在C++17及以后版本中),本文给大家介绍了C/C++检测文件是否存在的几种常见方法,感兴趣的小伙伴跟着小编一起来看看吧
    2024-06-06
  • opencv实现多张图像拼接

    opencv实现多张图像拼接

    这篇文章主要为大家详细介绍了opencv实现多张图像拼接功能,具有一定的参考价值,感兴趣的小伙伴们可以参考一下
    2019-01-01

最新评论