1 Star 0 Fork 0

Apelx/data-struct

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
24_例题_马鞍点.c 1018 Bytes
一键复制 编辑 原始数据 按行查看 历史
Apelx 提交于 2023-09-15 00:22 . first commit
#include <stdio.h>
#include <stdlib.h>
// m为行数 n为列数
#define m 3
#define n 4
/**
* 矩阵x中存在元素 x[i][j] 满足: x[i][]j]是第i行元素中最小值,并且又是第[j]列最大值,成为矩阵的一个马鞍点
* 求矩阵中所有马鞍点
*/
void ma_an_dian(int arr[m][n]) {
// 分别存放每一行最小值、每一列最大值
int line_min[m], column_max[n];
int i,j;
// 找到每一行最小值
for(i = 0; i < m; i++) {
line_min[i] = arr[i][0];
for(j = 1; j < n; j++) {
if(arr[i][j] < line_min[i]) {
line_min[i] = arr[i][j];
}
}
}
// 找到每一列最小值
for(i = 0; i < n; i++) {
column_max[i] = arr[0][i];
for(j = 1; j < m; j++) {
if(arr[j][i] > column_max[i]) {
column_max[i] = arr[j][i];
}
}
}
for(i = 0; i < m; i++) {
for(j = 0; j < n; j++) {
if(arr[i][j] == line_min[i] && arr[i][j] == column_max[j]) {
printf("line: %d, column: %d, val: %d\n", i, j, arr[i][j]);
}
}
}
}
int main24() {
int arr[m][n] = {
{7, 12, 3, 9},
{11, 12, 8, 10},
{4, 9, 2, 71}
};
ma_an_dian(arr);
return 0;
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C
1
https://gitee.com/apelx/data-struct.git
git@gitee.com:apelx/data-struct.git
apelx
data-struct
data-struct
master

搜索帮助