文件名称:数据结构与算法(C++)第三版答案
文件大小:544KB
文件格式:PDF
更新时间:2016-11-23 09:57:07
C++版第三版
1.6 An ADT for two-dimensional arrays might look as follows. Matrix add(Matrix M1, Matrix M2); Matrix multiply(Matrix M1, Matrix M2); Matrix transpose(Matrix M1); void setvalue(Matrix M1, int row, int col, int val); int getvalue(Matrix M1, int row, int col); List getrow(Matrix M1, int row);