在 C++ 中调整数组大小
本文将介绍在 C++ 中如何调整数组大小的多种方法。
使用 resize
方法在 C++ 中调整一个数组的大小
由于定长数组容器在 C++ 中是不应该调整大小的,所以我们将重点讨论 std::vector
类。resize
是 vector
容器的内置函数,它可以改变向量所包含的元素数。如果第一个参数 count
小于 vector
的当前大小,该函数可以减少元素的数量。否则,如果 count
参数大于向量大小,resize
会插入额外的元素,默认值为 0,或者用户可以提供所需的值作为函数的第二个参数。
#include <iostream>
#include <vector>
using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector;
template<typename T>
void printVectorElements(vector<T> &vec)
{
for (auto i = 0; i < vec.size(); ++i) {
cout << vec.at(i) << "; ";
}
cout << endl;
}
int main() {
vector<int> i_vec1 = {12, 32, 43, 53, 23, 65, 84};
cout << "i_vec1 : ";
printVectorElements(i_vec1);
cout << "size: " << i_vec1.size() << endl;
i_vec1.resize(i_vec1.size() - 2);
cout << "i_vec1 (resized -2): ";
printVectorElements(i_vec1);
cout << "size: " << i_vec1.size() << endl;
cout << endl;
return EXIT_SUCCESS;
}
输出:
i_vec1 : 12; 32; 43; 53; 23; 65; 84;
size: 7
i_vec1 (resized -2): 12; 32; 43; 53; 23;
size: 5
使用 erase
方法在 C++ 中减少数组中的元素数量
erase
函数是 std::vector
类的另一个内置方法,它可以从 vector
中删除单个元素,甚至删除由相应迭代器指定的整个范围。
在下面的例子中,从元素 2 到末端的给定范围被从整数的 vector
中删除。注意,通常的做法是用 begin
/end
迭代器传递范围参数。
#include <iostream>
#include <vector>
using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector;
template<typename T>
void printVectorElements(vector<T> &vec)
{
for (auto i = 0; i < vec.size(); ++i) {
cout << vec.at(i) << "; ";
}
cout << endl;
}
int main() {
vector<int> i_vec1 = {12, 32, 43, 53, 23, 65, 84};
cout << "i_vec1 : ";
printVectorElements(i_vec1);
cout << "size: " << i_vec1.size() << endl;
i_vec1.erase(i_vec1.begin() + 2, i_vec1.end());
cout << "i_vec1 (resized): ";
printVectorElements(i_vec1);
cout << "size: " << i_vec1.size() << endl;
cout << endl;
return EXIT_SUCCESS;
}
输出:
i_vec1 : 12; 32; 43; 53; 23; 65; 84;
size: 7
i_vec1 (resized): 12; 32;
size: 2
使用自定义函数在 C++ 中调整数组的大小
另外,我们也可以定义一个单独的函数,它可以遍历向量,并从向量的末端删除给定数量的元素。这可以使用 pop_back
内置函数来实现,它可以删除 vector
中的最后一个元素。如接下来的代码示例所示,定义了 resizeVector
函数模板,用来接收一个类型为 T
的向量和要从其中移除的若干元素。
#include <iostream>
#include <vector>
using std::cout; using std::cin;
using std::endl; using std::string;
using std::vector;
template<typename T>
void printVectorElements(vector<T> &vec)
{
for (auto i = 0; i < vec.size(); ++i) {
cout << vec.at(i) << "; ";
}
cout << endl;
}
template<typename T>
void resizeVector(vector<T> &vec, int elems)
{
for (auto i = 0; i < elems; ++i) {
vec.pop_back();
}
}
int main() {
vector<int> i_vec1 = {12, 32, 43, 53, 23, 65, 84};
cout << "i_vec1 : ";
printVectorElements(i_vec1);
cout << "size: " << i_vec1.size() << endl;
resizeVector(i_vec1, 3);
cout << "i_vec1 (resized): ";
printVectorElements(i_vec1);
cout << "size: " << i_vec1.size() << endl;
cout << endl;
return EXIT_SUCCESS;
}
输出:
i_vec1 : 12; 32; 43; 53; 23; 65; 84;
size: 7
i_vec1 (resized): 12; 32; 43; 53;
size: 4
相关文章
在 C++ 中通过掷骰子生成随机值
发布时间:2023/04/09 浏览次数:169 分类:C++
-
本文解释了如何使用时间因子方法和模拟 C++ 中的掷骰子的任意数方法生成随机数。了解它是如何工作的以及它包含哪些缺点。提供了一个 C++ 程序来演示伪数生成器。
在 C++ 中使用模板的链表
发布时间:2023/04/09 浏览次数:158 分类:C++
-
本文解释了使用模板在 C++ 中创建链表所涉及的各个步骤。工作程序演示了一个链表,该链表使用模板来避免在创建新变量时声明数据类型的需要。
在 C++ 中添加定时延迟
发布时间:2023/04/09 浏览次数:142 分类:C++
-
本教程将为你提供有关在 C++ 程序中添加定时延迟的简要指南。这可以使用 C++ 库为我们提供的一些函数以多种方式完成。
在 C++ 中创建查找表
发布时间:2023/04/09 浏览次数:155 分类:C++
-
本文重点介绍如何创建查找表及其在不同场景中的用途。提供了三个代码示例以使理解更容易,并附有代码片段以详细了解代码。
如何在 C++ 中把字符串转换为小写
发布时间:2023/04/09 浏览次数:63 分类:C++
-
介绍了如何将 C++ std::string 转换为小写的方法。当我们在考虑 C++ 中的字符串转换方法时,首先要问自己的是我的输入字符串有什么样的编码
如何在 C++ 中确定一个字符串是否是数字
发布时间:2023/04/09 浏览次数:163 分类:C++
-
本文介绍了如何检查给定的 C++ 字符串是否是数字。在我们深入研究之前,需要注意的是,以下方法只与单字节字符串和十进制整数兼容。
如何在 c++ 中查找字符串中的子字符串
发布时间:2023/04/09 浏览次数:65 分类:C++
-
本文介绍了在 C++ 中检查一个字符串是否包含子字符串的多种方法。使用 find 方法在 C++ 中查找字符串中的子字符串
如何在 C++ 中把字符串转换为 Char 数组
发布时间:2023/04/09 浏览次数:107 分类:C++
-
本文介绍了在 C++ 中把字符串转换为 char 数组的多种方法。使用 std::basic_string::c_str 方法将字符串转换为 char 数组