收藏 分享(赏)

C++矩阵类重载运算符.doc

上传人:精品资料 文档编号:8351204 上传时间:2019-06-21 格式:DOC 页数:7 大小:134KB
下载 相关 举报
C++矩阵类重载运算符.doc_第1页
第1页 / 共7页
C++矩阵类重载运算符.doc_第2页
第2页 / 共7页
C++矩阵类重载运算符.doc_第3页
第3页 / 共7页
C++矩阵类重载运算符.doc_第4页
第4页 / 共7页
C++矩阵类重载运算符.doc_第5页
第5页 / 共7页
点击查看更多>>
资源描述

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;程序运行结果:

展开阅读全文
相关资源
猜你喜欢
相关搜索

当前位置:首页 > 企业管理 > 管理学资料

本站链接:文库   一言   我酷   合作


客服QQ:2549714901微博号:道客多多官方知乎号:道客多多

经营许可证编号: 粤ICP备2021046453号世界地图

道客多多©版权所有2020-2025营业执照举报