要删除 vector 中指定位置的元素,可以使用 erase() 函数。该函数接受一个迭代器参数,删除指定位置的元素,并将后面的元素向前移动。以下是一个示例:
#include <iostream>
#include <vector>
int main() {
std::vector<int> vec = {1, 2, 3, 4, 5};
int index = 2; // 要删除的元素位置
if (index < vec.size()) {
vec.erase(vec.begin() + index);
for (int num : vec) {
std::cout << num << " ";
}
} else {
std::cout << "Invalid index";
}
return 0;
}
在上面的示例中,我们先定义了一个包含 1, 2, 3, 4, 5 的 vector。然后指定要删除的位置 index 为 2,使用 erase() 函数删除该位置的元素。最后,输出删除元素后的 vector。