91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c++中怎么用vector查找指定元素

c++
小億
167
2024-03-07 13:08:23
欄目: 編程語言

要使用vector查找指定元素,可以使用std::find函數。具體操作如下:

#include <iostream>
#include <vector>
#include <algorithm>

int main() {
    std::vector<int> vec = {1, 2, 3, 4, 5};

    int target = 3;

    auto it = std::find(vec.begin(), vec.end(), target);

    if (it != vec.end()) {
        std::cout << "Element found at index: " << std::distance(vec.begin(), it) << std::endl;
    } else {
        std::cout << "Element not found" << std::endl;
    }

    return 0;
}

在上面的代碼中,我們定義了一個vector,并且查找其中是否存在值為3的元素。使用std::find函數可以在vector中查找指定元素,并返回該元素的迭代器。如果找到了元素,則輸出元素所在的索引位置,如果未找到則輸出"Element not found"。

0
青阳县| 镇雄县| 竹溪县| 安新县| 云林县| 潜江市| 黄大仙区| 龙山县| 日喀则市| 牡丹江市| 德州市| 革吉县| 秀山| 遵化市| 鄂托克前旗| 资讯| 徐闻县| 连州市| 永川市| 漳平市| 浦城县| 屏东市| 林芝县| 九江县| 郎溪县| 彰化市| 汝州市| 沽源县| 竹溪县| 青河县| 潼南县| 湘西| 云安县| 共和县| 灯塔市| 贡觉县| 密山市| 自治县| 朝阳市| 宁安市| 黔江区|