设为首页收藏本站

新微赢技术网

 找回密码
 注册
搜索
热搜: 回贴
查看: 1919|回复: 3
打印 上一主题 下一主题

[分享]重传

[复制链接]
跳转到指定楼层
1#
发表于 2009-11-3 02:10:14 | 只看该作者 回帖奖励 |正序浏览 |阅读模式
附件: 只有本站会员才能下载或查看附件,请您 登录 或 注册
4#
发表于 2009-11-3 02:10:19 | 只看该作者
多谢。我在用你的程序作一边.
回复 支持 反对

使用道具 举报

3#
发表于 2009-11-3 02:10:17 | 只看该作者
这是我的想法,觉得简单些:
class Matrix
{
int row;
int col;
vector<vector<int>>myArr;
public:
Matrix(int n);
Matrix(int m ,int n);
Matrix(const Matrix& A);
~Matrix();
Matrix& operator= (const Matrix& A);
int GetRow() const {return row;}
int GetCol() const {return col;}
friend std::ostream& operator<< (std::ostream& os ,const Matrix& A);
friend std::istream& operator>> (std::istream& is , Matrix& B);
friend Matrix operator* (const Matrix& A ,const Matrix& B);
};
//部分实现文件
Matrix::Matrix(int n,int m=0)
{
int r=row = n;
myArr.resize(n);
if(m==0)
{
col = n;
for(;r;r--)myArr[r].resize(n);
}
else
{
col = m;
for(;r;r--)myArr[r].resize(m);
}
}
Matrix::Matrix(const Matrix& A)
{
int r=row = A.row;
int c=col = A.col;
myArr.resize(r);
for (;c;c--)
myArr[r].resize(n);
}
Matrix::~Matrix()
{
int r=row;for(;r;r--)myArr[r].resize(0);
}
回复 支持 反对

使用道具 举报

2#
发表于 2009-11-3 02:10:15 | 只看该作者
//***提建议,我觉得可以优化一下(虽然我也不知道对不对):
//这是你的一部分
class Matrix
{
private:
int row;
int col;
public:
int ** p;
Matrix(int n);
Matrix(int m ,int n);
Matrix(const Matrix& A);
~Matrix();

Matrix& operator= (const Matrix& A);
int GetRow() const {return row;}
int GetCol() const {return col;}
friend std::ostream& operator<< (std::ostream& os ,const Matrix& A);
friend std::istream& operator>> (std::istream& is , Matrix& B);
};

Matrix operator* (const Matrix& A ,const Matrix& B);
Matrix::Matrix(int n)
{
row = n;
col = n;
p=new int * [row];
for(int i = 0 ; i < col ; i++)
p[i] = new int [col];
for(i = 0 ; i < row ;i++)
for(int j = 0 ; j < col ; j++)
*(*(p+i)+j) = 0;
}
Matrix::Matrix(int m ,int n)
{
row = m;
col = n;
p = new int * [row];
for(int i = 0 ; i < row ; i++)
p[i] = new int [col];
for(i = 0 ; i < row ;i++)
for(int j = 0 ; j < col ; j++)
*(*(p+i)+j) = 0;
}

Matrix::Matrix(const Matrix& A)
{
row = A.row;
col = A.col;
p = new int * [row];
for(int i = 0 ; i < row ; i++)
p[i] = new int [col];
for(i = 0 ; i < row ;i++)
for(int j = 0 ; j < col ; j++)
*(*(p+i)+j) = *(*(A.p+i)+j);
}
Matrix::~Matrix()
{
for(int i = 0 ; i < row ; i++)delete [] p[i]; delete [] p;
}
回复 支持 反对

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

申请友链|小黑屋|最新主题|手机版|新微赢技术网 ( 苏ICP备08020429号 )  

GMT+8, 2024-11-18 06:15 , Processed in 0.108501 second(s), 9 queries , Gzip On, Memcache On.

Powered by xuexi

© 2001-2013 HaiAn.Com.Cn Inc. 寰耽

快速回复 返回顶部 返回列表