数据结构求一个矩阵的马鞍点

马鞍点就是本行中最小的但是本列中最大的数

如图:

数据结构求一个矩阵的马鞍点_第1张图片

代码:

#include 
#include
#include
using namespace std;
#define M 4
#define N 4
int minn[M],maxx[N];
void MinMax(int A[M][N])///M行中最小,N列中最大
{
    int i,j;
    bool have=false;
    for(i=0; iA[i][j])
                minn[i]=A[i][j];
    }
    for(j=0; j

你可能感兴趣的:(数据结构)