gpt4 book ai didi

c - 查找二维数组中特定值的计数器

转载 作者:行者123 更新时间:2023-11-30 16:34:21 24 4
gpt4 key购买 nike

我想找出一个二维数组是否包含特定值。以这个随机矩阵为例:

#include <stdio.h>
#include <stdlib.h>

int main() {
int m;
int n;
int mat[100][100];

printf("Enter the number of rows: ");
scanf("%d", &m);

printf("\nEnter the number of columns: ");
scanf("%d", &n);

srand(time(NULL));

printf("\n");

for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
mat[i][j] = rand() % 21;
printf("%d\t", mat[i][j]);
}
printf("\n");
}
printf("\n");

return 0;
}

如何找出 mat[i][j] 数组中有多少个零 (0)?

最佳答案

嗯,这取决于,当你实际填写矩阵时,你是否可以保存这些信息?

int numZeroes = 0;
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
mat[i][j] = rand() % 21;

if (mat[i][j] == 0) {
numZeroes++;
}

printf("%d\t", mat[i][j]);
}
printf("\n");
}
printf("\n");

如果你不能,并且你只需要确定矩阵初始化后有多少个零,则需要使用与你相同类型的嵌套循环来强力搜索它,因为它根本没有排序用于初始化它:

int numZeroes = 0;
for (int i = 0; i < m; i++) {
for (int j = 0; j < n; j++) {
if (mat[i][j] == 0) {
numZeroes++;
}
}

关于c - 查找二维数组中特定值的计数器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/49352915/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com