您的位置 首页 知识分享

C++ 函数有哪些 STL 函数是容器相关的?

++ stl 中与容器相关的函数:begin() 和 end():获取容器开头和结尾的迭代器,用于遍历容器。r…

++ stl 中与容器相关的函数:begin() 和 end():获取容器开头和结尾的迭代器,用于遍历容器。rbegin() 和 rend():获取反向迭代器,用于反向遍历容器。empty():检查容器是否为空。size():返回容器中元素的数量。clear():删除容器中的所有元素,使其为空。

C++ 函数有哪些 STL 函数是容器相关的?

C++ STL 中的容器相关函数

STL(标准模板库)提供了广泛的容器类和函数,用于在 C++ 中管理集合。本文将重点介绍与容器相关的最常用函数。

1. begin() 和 end():

立即学习“”;

这些函数用于获取容器开头和结尾的迭代器。它们广泛用于遍历容器:

#include <vector>  int main() {   std::vector<int> vec = {1, 2, 3, 4, 5};    for (auto it = vec.begin(); it != vec.end(); ++it) {     std::cout << *it << " ";  // 输出:1 2 3 4 5   }    return 0; }
登录后复制

2. rbegin() 和 rend():

这些函数与 begin() 和 end() 类似,但它们用于获取反向迭代器,从而反向遍历容器:

for (auto it = vec.rbegin(); it != vec.rend(); ++it) {     std::cout << *it << " ";  // 输出:5 4 3 2 1 }
登录后复制

3. empty():

此函数检查容器是否为空(不包含任何元素):

if (vec.empty()) {     std::cout << "Vector is empty." << std::endl; }
登录后复制

4. size():

此函数返回容器中元素的数量:

std::cout << "Vector size: " << vec.size() << std::endl;  // 输出:5
登录后复制

5. clear():

此函数删除容器中的所有元素,有效地使其为空:

vec.clear();
登录后复制

实战案例:

以下是一个使用 STL 容器相关函数的实际示例,用于从文件中读取数字并计算它们的总和:

#include <iostream> #include <fstream> #include <vector>  int main() {   std::ifstream infile("numbers.txt");   if (!infile) {     std::cerr << "Error opening file." << std::endl;     return 1;   }    std::vector<int> numbers;   int num;   while (infile >> num) {     numbers.push_back(num);   }    int sum = 0;   for (auto it = numbers.begin(); it != numbers.end(); ++it) {     sum += *it;   }    std::cout << "Sum of numbers: " << sum << std::endl;    return 0; }
登录后复制

以上就是C++ 函数有哪些 STL 函数是容器相关的?的详细内容,更多请关注php中文网其它相关文章!

本文来自网络,不代表甲倪知识立场,转载请注明出处:http://www.spjiani.cn/wp/3090.html

作者: nijia

发表评论

您的电子邮箱地址不会被公开。

联系我们

联系我们

0898-88881688

在线咨询: QQ交谈

邮箱: email@wangzhan.com

工作时间:周一至周五,9:00-17:30,节假日休息

关注微信
微信扫一扫关注我们

微信扫一扫关注我们

关注微博
返回顶部