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

溫馨提示×

c++中怎么用vector查找某個值

小億
230
2024-03-19 17:31:38
欄目: 編程語言

在C++中,可以使用std::find函數在vector中查找某個特定值。下面是一個示例代碼:

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

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

    int value_to_find = 3;

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

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

    return 0;
}

在這個示例中,我們首先創建一個包含整數的vector,并定義要查找的值為3。然后使用std::find函數在vector中查找這個值,如果找到則輸出其索引,否則輸出"value not found"。

0
安徽省| 上蔡县| 邻水| 昌宁县| 高雄市| 安庆市| 武义县| 昆山市| 宜兰县| 胶州市| 甘孜| 沙坪坝区| 江陵县| 忻州市| 宁陕县| 南漳县| 南川市| 永川市| 古浪县| 托克托县| 武隆县| 红原县| 西宁市| 宁晋县| 滨州市| 新田县| 黔江区| 永兴县| 瑞安市| 嘉定区| 武乡县| 太原市| 怀来县| 哈巴河县| 阿拉尔市| 武定县| 盈江县| 吉林市| 阜平县| 德化县| 和政县|