博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
矩阵转置
阅读量:5078 次
发布时间:2019-06-12

本文共 1259 字,大约阅读时间需要 4 分钟。

1 #include 
2 template
3 class Matrix 4 { 5 public: 6 Matrix(int r=0,int c=0); 7 Matrix(Matrix
&m); 8 ~Matrix() 9 {10 delete []melem;11 }12 void input();13 void print();14 T & operator ()(int i,int j);15 void transmat(Matrix
&,Matrix
&);16 private:17 int rows,cols;18 T *melem;19 };20 template
21 Matrix
::Matrix(int r,int c)22 {23 rows=r;24 cols=c;25 melem=new T[r*c];26 }27 template
28 Matrix
::Matrix(Matrix
&m) //构造函数29 {30 rows =m.rows;31 cols =m.cols;32 melem =new T[rows*cols];33 for(int i =0 ; i
37 T &Matrix
::operator () (int i,int j) //取元素运算38 {39 return melem [(i-1)*cols +j-1];40 }41 42 template
43 void Matrix
::input()44 {45 for(int i=0;i
>melem [i];47 }48 template
49 void Matrix
::print()50 {51 for (int i=0;i
60 void Matrix
::transmat(Matrix
&a, Matrix
&b)61 {62 int i,j;63 for(i=1;i<=a.rows;i++)64 for(j=1;j<=a.cols;j++)65 {66 b(j,i)=a(i,j);67 }68 }69 int main()70 {71 Matrix
A(3,2) ,B(2,3) ;72 A.input();73 cout<<"A:";74 A.print();75 A.transmat(A,B);76 cout<
<<"B:";77 B.print();78 cout<
View Code

 

转载于:https://www.cnblogs.com/jamylu/p/4903374.html

你可能感兴趣的文章
对于负载均衡的理解
查看>>
django简介
查看>>
window.event在IE和Firefox的异同
查看>>
常见的js算法面试题收集,es6实现
查看>>
IO流写出到本地 D盘demoIO.txt 文本中
查看>>
Windows10 下Apache服务器搭建
查看>>
HDU 5458 Stability
查看>>
左手坐标系和右手坐标系
查看>>
solr后台操作Documents之增删改查
查看>>
http://yusi123.com/
查看>>
文件文本的操作
查看>>
Ubuntu linux下gcc版本切换
查看>>
记一次Web服务的性能调优
查看>>
jQuery.form.js使用
查看>>
(转)linux sort,uniq,cut,wc命令详解
查看>>
关于ExecuteNonQuery执行的返回值(SQL语句、存储过程)
查看>>
UVa540 Team Queue(队列queue)
查看>>
mysql数据增删改查
查看>>
shell中下载最新版本或指定版本的办法(Dockerfile 中通用)
查看>>
极客时间-左耳听风-程序员攻略-分布式架构工程设计
查看>>