您好,登录后才能下订单哦!
密码登录
登录注册
点击 登录注册 即表示同意《亿速云用户服务条款》
在C++中高效搜索Array类元素可以使用STL中的算法和数据结构来实现。以下是一些常用的方法:
#include <algorithm>
#include <vector>
std::vector<int> arr = {1, 2, 3, 4, 5};
auto it = std::find(arr.begin(), arr.end(), 3);
if (it != arr.end()) {
// element found
std::cout << "Element found at index: " << std::distance(arr.begin(), it) << std::endl;
} else {
// element not found
std::cout << "Element not found" << std::endl;
}
#include <unordered_map>
#include <vector>
std::vector<int> arr = {1, 2, 3, 4, 5};
std::unordered_map<int, int> map;
for (int i = 0; i < arr.size(); ++i) {
map[arr[i]] = i;
}
int target = 3;
if (map.find(target) != map.end()) {
std::cout << "Element found at index: " << map[target] << std::endl;
} else {
std::cout << "Element not found" << std::endl;
}
#include <vector>
int binarySearch(const std::vector<int>& arr, int target) {
int left = 0, right = arr.size() - 1;
while (left <= right) {
int mid = left + (right - left) / 2;
if (arr[mid] == target) {
return mid;
} else if (arr[mid] < target) {
left = mid + 1;
} else {
right = mid - 1;
}
}
return -1; // element not found
}
std::vector<int> arr = {1, 2, 3, 4, 5};
int target = 3;
int index = binarySearch(arr, target);
if (index != -1) {
std::cout << "Element found at index: " << index << std::endl;
} else {
std::cout << "Element not found" << std::endl;
}
这些方法可以帮助你在C++中高效搜索Array类元素。根据具体情况选择适合的方法来实现搜索。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。