C語言-find()函數

2020-08-12 23:35:43

find函數用於查詢陣列中的某一個指定元素的位置。

比如:有一個數組[0, 0, 5, 4, 4];
問:元素5的在什麼位置,find函數 返回值 爲 2;

find (陣列名 + 起始查詢元素的位置, 陣列名 + 結束查詢的元素位置, 想要查詢的元素)

直接上程式碼:

#include <iostream>
#include <vector>
#include <algorithm>//注意要包含該標頭檔案
using namespace std;
int main()
{
    int nums[] = { 3, 1, 4, 1, 5, 9 };
    int num_to_find = 5;
    int start = 0;
    int end = 5;
    int* result = find( nums + start, nums + end, num_to_find );
    if( result == nums + end ) 
    {
        cout<< "Did not find any number matching " << num_to_find << endl;
    } 
    else
    {
         cout<< "Found a matching number: " << *result << endl;
    }
    return 0;
}

C语言-find()函数
轉載:https://blog.csdn.net/qq_38228254/article/details/88213662
https://blog.csdn.net/zhangweijiqn/article/details/9107571