1. 首页
  2. 数据库
  3. 其它
  4. 学习二维动态数组指针做矩阵运算的方法

学习二维动态数组指针做矩阵运算的方法

上传者: 2021-01-03 08:35:35上传 PDF文件 45.01KB 热度 11次
本文分享了利用二维动态数组指针做矩阵运算的实现代码。 1. 头文件 // juzhen 2.cpp : Defines the entry point for the console application. // #include stdafx.h #include stdlib.h #include windows.h #define OK 0 #define NG -1 typedef struct mat { int nRow; /* 行数 */ int nCol; /* 列数 */ int* pData; /*
下载地址
用户评论