| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 423 人关注过本帖
标题:请教一个运算符重载程序
只看楼主 加入收藏
heliujin
Rank: 2
等 级:论坛游民
帖 子:249
专家分:14
注 册:2006-3-14
结帖率:100%
收藏
 问题点数:0 回复次数:2 
请教一个运算符重载程序
有点错误 希望大家帮我找一找 我们正在学这个呢 谢谢大家了 如果有逻辑错误的话 请不要笑话我:
#include<iostream.h>
#include<iomanip.h>
class matrix
{
short rows,cols;
double *elems;
public:
matrix(){}
matrix(short r,short c);
double operator()(short r,short c);
void setelem(short r,short c,double v);
friend matrix operator+(matrix p,matrix q);
friend matrix operator-(matrix p,matrix q);
friend matrix operator*(matrix p,matrix q);
void print();
};
matrix::matrix(short r,short c)
{
rows=r;
cols=c;
elems=new double[r*c];
}
double matrix::operator ()(short r,short c)
{
return (r>=1&&r<=rows&&c>=1&&c<=cols)?elems[(r-1)*cols+(c-1)]:0.0;
}
void matrix::setelem(short r,short c,double v)
{
if(r>=1&&r<=rows&&c>=1&&c<=cols)
elems[(r-1)*cols+(c-1)]=v;
}
matrix operator+(matrix p,matrix q)
{
matrix m(p.rows,p.cols);
if(p.rows!=q.rows||p.cols!=q.cols)
{
cout<<"error";
}
for(int i=1;i<=p.rows;i++)
{
for(int j=1;j<=p.cols;j++)
{
m.setelem(i,j,p(i,j)+q(i,j));
}
}
return m;
}
matrix operator-(matrix p,matrix q)
{
matrix m(p.rows,p.cols);
if(p.rows!=q.rows||p.cols!=q.cols)
{
cout<<"error";
}
for(int i=1;i<=p.rows;i++)
{
for(int j=1;j<=p.cols;j++)
{
m.setelem(i,j,p(i,j)-q(i,j));
}
}
return m;
}
matrix operator*(matrix p,matrix q)
{
matrix m(p.rows,q.cols);
if(p.cols!=q.rows)
cout<<"error";
for(int i=1;i<=p.rows;i++)
{
for(int j=1;j<=q.cols;j++)
{
m.setelem(i,j,0.0);
for(int k=1;k<=p.cols;k++)
{
m.setelem(i,j,m(i,j)+p(i,k)+q(k,j));
}
return m;
}
void matrix::print()
{
for(int i=1;i<=rows;i++)
{
for(int j=1;j<=cols;j++)
{
cout<<setw(7)<<(*this)(i,j);
}
cout<<endl;
}
}
void main()
{
matrix a(2,3),b(2,3),c(3,2),d(2,3),e(2,2);
a.setelem(1,1,-1.1);
a.setelem(1,2,2.2);
a.setelem(1,3,-3.3);
a.setelem(2,1,4.4);
a.setelem(2,2,-5.5);
a.setelem(2,3,6.6);
cout<<"A:"<<endl;a.print();
}
2006-05-06 08:46
wfpb
Rank: 6Rank: 6
等 级:贵宾
威 望:29
帖 子:2188
专家分:0
注 册:2006-4-2
收藏
得分:0 
以下是引用heliujin在2006-5-6 8:46:00的发言:
有点错误 希望大家帮我找一找 我们正在学这个呢 谢谢大家了 如果有逻辑错误的话 请不要笑话我:
#include<iostream.h>
#include<iomanip.h>
class matrix
{
short rows,cols;
double *elems;
public:
matrix(){}
matrix(short r,short c);
double operator()(short r,short c);
void setelem(short r,short c,double v);
friend matrix operator+(matrix p,matrix q);
friend matrix operator-(matrix p,matrix q);
friend matrix operator*(matrix p,matrix q);
void print();
};
matrix::matrix(short r,short c)
{
rows=r;
cols=c;
elems=new double[r*c];
}
double matrix::operator ()(short r,short c)
{
return (r>=1&&r<=rows&&c>=1&&c<=cols)?elems[(r-1)*cols+(c-1)]:0.0;
}
void matrix::setelem(short r,short c,double v)
{
if(r>=1&&r<=rows&&c>=1&&c<=cols)
elems[(r-1)*cols+(c-1)]=v;
}
matrix operator+(matrix p,matrix q)
{
matrix m(p.rows,p.cols);
if(p.rows!=q.rows||p.cols!=q.cols)
{
cout<<"error";
}
for(int i=1;i<=p.rows;i++)
{
for(int j=1;j<=p.cols;j++)
{
m.setelem(i,j,p(i,j)+q(i,j));
}
}
return m;
}
matrix operator-(matrix p,matrix q)
{
matrix m(p.rows,p.cols);
if(p.rows!=q.rows||p.cols!=q.cols)
{
cout<<"error";
}
for(int i=1;i<=p.rows;i++)
{
for(int j=1;j<=p.cols;j++)
{
m.setelem(i,j,p(i,j)-q(i,j));
}
}
return m;
}
matrix operator*(matrix p,matrix q)
{
matrix m(p.rows,q.cols);
if(p.cols!=q.rows)
cout<<"error";
for(int i=1;i<=p.rows;i++)
{
for(int j=1;j<=q.cols;j++)
{
m.setelem(i,j,0.0);
for(int k=1;k<=p.cols;k++)
{
m.setelem(i,j,m(i,j)+p(i,k)+q(k,j));
}
return m;
}
} //掉了两个括号,其他没错
}
void matrix::print()
{
for(int i=1;i<=rows;i++)
{
for(int j=1;j<=cols;j++)
{
cout<<setw(7)<<(*this)(i,j);
}
cout<<endl;
}
}
void main()
{
matrix a(2,3),b(2,3),c(3,2),d(2,3),e(2,2);
a.setelem(1,1,-1.1);
a.setelem(1,2,2.2);
a.setelem(1,3,-3.3);
a.setelem(2,1,4.4);
a.setelem(2,2,-5.5);
a.setelem(2,3,6.6);
cout<<"A:"<<endl;a.print();
}


[glow=255,red,2]wfpb的部落格[/glow] 学习成为生活的重要组成部分!
2006-05-06 19:48
heliujin
Rank: 2
等 级:论坛游民
帖 子:249
专家分:14
注 册:2006-3-14
收藏
得分:0 

谢谢你了 以后我会注意的
呵呵

2006-05-06 20:14
快速回复:请教一个运算符重载程序
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.039933 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved