题解 | #二维数组中的查找#

二维数组中的查找

https://www.nowcoder.com/practice/abc3fe2ce8e146608e868a70efebf62e

c语言

bool Find(int target, int** array, int arrayRowLen, int* arrayColLen ) {
    for(int i = 0; i < arrayRowLen; i++){
        for(int j = 0; j < *arrayColLen; j++){
            if(array[i][j] == target){
                return true;
            }
        }
    }
    return false;
}
全部评论

相关推荐

shtdbb_:还不错,没有让你做了笔试再挂你
点赞 评论 收藏
分享
1 收藏 评论
分享
牛客网
牛客企业服务