php array recursive search code example
Example 1: array search c++
#include <iostream>
2 #include <array>
3 #include <string>
4 #include <algorithm>
5
6 using namespace std;
7
8 int main(){
9 array<string, 4> colours = {"blue", "black", "red", "green"};
10 sort(colours.begin(), colours.end());
11 string key = "black";
12
13 bool found = binary_search(colours.begin(), colours.end(), key);
14 if (found){
15 cout << "We found the key 'black'" << endl;
16 }
17 return 0;
18 }
Example 2: powershell search array
$a = @(1,2,3,4,5)
$a | where { $_ -eq 3 }
$a -eq 3
$a -contains 3