如何在vector中查找元素及其位置


要在vector中查找元素及其位置,可以使用以下方法:

    使用find()函数:可以使用STL中的find()函数来查找元素在vector中的位置。例如,要查找值为x的元素在vector中的位置,可以使用以下代码:
auto it = find(vec.begin(), vec.end(), x);if (it != vec.end()) {int index = distance(vec.begin(), it);cout << "Element found at position: " << index << endl;} else {cout << "Element not found" << endl;}
    使用find_if()函数:如果要查找满足特定条件的元素在vector中的位置,可以使用find_if()函数。例如,要查找大于10的第一个元素在vector中的位置,可以使用以下代码:
auto it = find_if(vec.begin(), vec.end(), [](int num){ return num > 10; });if (it != vec.end()) {int index = distance(vec.begin(), it);cout << "Element found at position: " << index << endl;} else {cout << "Element not found" << endl;}
    手动遍历vector:也可以手动遍历vector来查找元素及其位置。例如,要查找值为x的元素在vector中的位置,可以使用以下代码:
int index = -1;for (int i = 0; i < vec.size(); i++) {if (vec[i] == x) {index = i;break;}}if (index != -1) {cout << "Element found at position: " << index << endl;} else {cout << "Element not found" << endl;}


上一篇:vector容器排序的方法是什么

下一篇:C语言如何交换数组中两个数


vector
Copyright © 2002-2019 测速网 https://www.inhv.cn/ 皖ICP备2023010105号 城市 地区 街道
温馨提示:部分文章图片数据来源与网络,仅供参考!版权归原作者所有,如有侵权请联系删除!
热门搜索