1、C+数据与结构第三次作业潘隆武 21425202 机械工程题目:在已建立 N*M的矩阵类前提下,重载运算符“+” 、 “*”、 “=”、 “”。#include#includeusing namespace std;class Matrixpublic:Matrix();/默认构造函数Matrix(int ,int );/初始化构造函数Matrix(const Matrix /拷贝构造函数Matrix();/析构函数Matrix operator+(Matrix Matrix operator*(Matrix Matrix operator=(Matrix friend istream fri
2、end ostream Matrix M1(r,c);cinM1;coutrc;Matrix M2(r,c);cinM2;cout“进行重载,使它具有输入矩阵的功能istream return input;/对“进行重载,使它具有输出矩阵的功能ostream im.row;i+)for(int j=0;jm.column;j+)outputleftsetw(5)m.ptij;outputendl;return output;/对“+“进行重载,使它具有将两个同型矩阵相加的功能Matrix Matrix:operator+(Matrix if(row!=m.row|column!=m.colum
3、n)cout“矩阵 M1 和矩阵 M2 不是同类型矩阵,不能相加!“endlendl;elsetemp.row=row;temp.column=column;temp.pt=new double*temp.row;for(int i=0;itemp.row;i+)temp.pti=new doubletemp.column;for(int j=0;jtemp.column;j+)temp.ptij=ptij+m.ptij;return temp;/对“*“ 进行重载,使它具有将两个符合相乘条件的矩阵相乘的功能Matrix Matrix:operator*(Matrix if(column!=m
4、.row)cout“矩阵 M1 的列数和矩阵 M2 的行数不相等,不能相乘!“endlendl;elsetemp.row=row;temp.column=m.column;temp.pt=new double*temp.row;for(int i=0;itemp.row;i+) temp.pti=new doubletemp.column;for(int j=0;jtemp.column;j+)double sum=0;for(int k=0;kcolumn;k+)sum=sum+ptik*m.ptkj;temp.ptij=sum;return temp;/对“=“进行重载,使它具有将一个矩阵赋给另一矩阵的功能Matrix Matrix:operator=(Matrix column=m.column;pt=new double*m.row;for(int i=0;im.row;i+)pti=new doublem.column;for(int j=0;jm.column;j+)ptij=m.ptij;return *this;程序运行结果: