当前位置:首页 C++ > 正文

C++实现在多维数组中的查找

作者:野牛程序员:2023-12-14 16:51:19 C++阅读 2574

多维数组中的查找可以通过嵌套循环来实现。以下是一个示例的C++代码,用于在一个二维数组中查找特定的元素:

#include <iostream>

bool searchIn2DArray(int target, int array[][3], int rows, int cols) {
    for (int i = 0; i < rows; ++i) {
        for (int j = 0; j < cols; ++j) {
            if (array[i][j] == target) {
                return true;
            }
        }
    }
    return false;
}

int main() {
    int rows = 3;
    int cols = 3;
    int myArray[][3] = {{1, 2, 3}, {4, 5, 6}, {7, 8, 9}};

    int target = 5;
    bool found = searchIn2DArray(target, myArray, rows, cols);

    if (found) {
        std::cout << "元素 " << target << " 存在于数组中。" << std::endl;
    } else {
        std::cout << "元素 " << target << " 不存在于数组中。" << std::endl;
    }

    return 0;
}


野牛程序员教少儿编程与信息学奥赛-微信|电话:15892516892
野牛程序员教少儿编程与信息学竞赛-微信|电话:15892516892
相关推荐

最新推荐

热门点击