c矩阵类课程设计
A. 跪求C++简单的矩阵运算,课程设计,一定要用C++编写啊 2.基本要
#include"stdafx.h"#includeusingnamespacestd;constintrows=8,cols=8;HINSTANCEhInst;HBITMAPball;HDChdc,mdc,bufdc;HWNDhWnd;DWORDtPre,tNow;char*str;intnowPos,prePos;boolfind;stackpath;intmapIndex[rows*cols]={0,2,0,0,0,0,0,0, //材10,1,0,1,1,1,1,0, //材20,1,0,1,0,1,1,0, //材30,1,0,0,0,1,1,0, //材40,1,1,1,1,1,1,0, //材50,1,0,0,0,0,1,0, //材60,0,1,1,1,1,1,0, //材70,0,0,0,0,0,3,0};//材8int record[rows*cols];ATOMMyRegisterClass(HINSTANCEhInstance);BOOLInitInstance(HINSTANCE,int);LRESULTCALLBACKWndProc(HWND,UINT,WPARAM,LPARAM);voidMyPaint(HDChdc);intAPIENTRYWinMain(HINSTANCEhInstance, HINSTANCEhPrevInstance, LPSTR lpCmdLine, int nCmdShow){MSGmsg;MyRegisterClass(hInstance);if(!InitInstance(hInstance,nCmdShow)) {returnFALSE;} while(msg.message!=WM_QUIT) { if(PeekMessage(&msg,NULL,0,0,PM_REMOVE)) { TranslateMessage(&msg); DispatchMessage(&msg); }else{tNow=GetTickCount();if(tNow-tPre>=100)MyPaint(hdc);} }returnmsg.wParam;}//****注册窗口*************************ATOMMyRegisterClass(HINSTANCEhInstance){WNDCLASSEXwcex;wcex.cbSize=sizeof(WNDCLASSEX); wcex.style=CS_HREDRAW|CS_VREDRAW;wcex.lpfnWndProc=(WNDPROC)WndProc;wcex.cbClsExtra=0;wcex.cbWndExtra=0;wcex.hInstance=hInstance;wcex.hIcon=NULL;wcex.hCursor=NULL;wcex.hCursor=LoadCursor(NULL,IDC_ARROW);wcex.hbrBackground=(HBRUSH)(COLOR_WINDOW+1);wcex.lpszMenuName=NULL;wcex.lpszClassName="canvas";wcex.hIconSm=NULL;returnRegisterClassEx(&wcex);}//****初始化*************************************BOOLInitInstance(HINSTANCEhInstance,intnCmdShow){HBITMAPbmp;hInst=hInstance;hWnd=CreateWindow("canvas","迷宫",WS_OVERLAPPEDWINDOW,CW_USEDEFAULT,0,CW_USEDEFAULT,0,NULL,NULL,hInstance,NULL);if(!hWnd){returnFALSE;}MoveWindow(hWnd,10,10,430,450,true);ShowWindow(hWnd,nCmdShow);UpdateWindow(hWnd);hdc=GetDC(hWnd);mdc=CreateCompatibleDC(hdc);bufdc=CreateCompatibleDC(hdc);bmp=CreateCompatibleBitmap(hdc,cols*50,rows*50);SelectObject(mdc,bmp);HBITMAPtile;introwNum,colNum;inti,x,y;tile=(HBITMAP)LoadImage(NULL,"tile.bmp",IMAGE_BITMAP,50,50,LR_LOADFROMFILE);ball=(HBITMAP)LoadImage(NULL,"ball.bmp",IMAGE_BITMAP,50,50,LR_LOADFROMFILE);for(i=0;i=0&&record[up]){path.push(up);record[up]=0;prePos=nowPos;nowPos=up; if(mapIndex[nowPos]==3)find=true;}elseif(down=rowNum*cols&&record[left]) {path.push(left);record[left]=0;prePos=nowPos;nowPos=left;if(mapIndex[nowPos]==3)find=true;}elseif(right<=(rowNum+1)*cols-1&&record[right]) {path.push(right);record[right]=0;prePos=nowPos;nowPos=right;if(mapIndex[nowPos]==3)find=true;}else{if(path.size()<=1)//str="xxxxx";else{path.pop();prePos=nowPos;nowPos=path.top();}}}else{str="找到出口";}TextOut(mdc,0,0,str,strlen(str));BitBlt(hdc,10,10,cols*50,rows*50,mdc,0,0,SRCCOPY);tPre=GetTickCount();}//****消息函数***********************************LRESULTCALLBACKWndProc(HWNDhWnd,UINTmessage,WPARAMwParam,LPARAMlParam){switch(message){caseWM_KEYDOWN:if(wParam==VK_ESCAPE)PostQuitMessage(0);break;caseWM_DESTROY:DeleteDC(mdc);DeleteDC(bufdc);DeleteObject(ball);ReleaseDC(hWnd,hdc);PostQuitMessage(0);break;default:returnDefWindowProc(hWnd,message,wParam,lParam); } return0;}// 可以运行 请采纳 有不懂的可以联系我这个可是标准c++的 这是结果这是源代码 /s/1i3kjNtr
B. 大神求c++矩阵转置与乘法计算的课程设计的编码(^ω^)
1、完整代码如下,已通过VS2012编译及输入测试,结果验证
2、复制构造函数懒得写,反正也没用到指针分配位置。默认的对程序也是没影响的
#include<iostream>
#include<string>
#include<vector>
#include<time.h>
#include<algorithm>
usingnamespacestd;
classCMatrix
{
public:
CMatrix():ivec(0,0){}
CMatrix(intr,intc):row(r),col(c),ivec(r*c,0)
{cout<<"Initial"<<r<<"X"<<c<<"matrix."<<endl;}
CMatrix(vector<int>v,intr,intc):ivec(v.begin(),v.end()),row(r),col(c){}
voidintialMatrix();
boolsameType(constCMatrix&)const;
CMatrixtransposition();
friendistream&operator>>(istream&,CMatrix&);
friendostream&operator<<(ostream&,constCMatrix&);
friendCMatrixoperator*(constCMatrix&matrix1,constCMatrix&matrix2);
private:
vector<int>ivec;
introw;
intcol;
};
voidCMatrix::intialMatrix()
{
intval;
for(vector<int>::iteratorbeg=ivec.begin();beg!=ivec.end();++beg)
{
cin>>val;
*beg=val;
}
}
boolCMatrix::sameType(constCMatrix&matrix)const
{
if(row==matrix.row&&col==matrix.col)
returntrue;
else
returnfalse;
}
istream&operator>>(istream&is,CMatrix&matrix)
{
is>>matrix.row>>matrix.col;
cout<<"Initial"<<matrix.row<<"X"<<matrix.col<<"matrix."<<endl;
returnis;
}
ostream&operator<<(ostream&os,constCMatrix&matrix)
{
intformat=1;
for(vector<int>::const_iteratorbeg=matrix.ivec.begin();beg!=matrix.ivec.end();++beg)
{
os<<*beg<<" ";
if(!(format%matrix.col))
os<<endl;
format++;
}
os<<endl;
returnos;
}
CMatrixoperator*(constCMatrix&matrix1,constCMatrix&matrix2)
{
CMatrixtempMatrix(matrix1);
if(matrix1.sameType(matrix2))
{
vector<int>::const_iteratorbeg2=matrix2.ivec.begin();
for(vector<int>::iteratorbeg=tempMatrix.ivec.begin();beg!=tempMatrix.ivec.end();++beg,++beg2)
*beg=(*beg)*(*beg2);
}
returntempMatrix;
}
CMatrixCMatrix::transposition()
{
vector<int>mvec;
for(inti=0;i!=this->col;i++)
{
for(intj=0;j!=this->row;j++)
{
mvec.push_back(*(ivec.begin()+i+j*this->col));
}
}
CMatrixtrans(mvec,this->col,this->row);
returntrans;
}
intmain()
{
CMatrixmat(2,3);
mat.intialMatrix();
cout<<mat<<endl;
CMatrixmat2(mat.transposition());
cout<<mat2<<endl;
CMatrixmat3(2,3);
mat3.intialMatrix();
cout<<mat*mat3<<endl;
}
C. Hilbert矩阵的条件数及其程序设计C语言课程设计
疏矩阵应用要求:实现三元组,十字链表下的稀疏矩阵的加、转、乘的实现。sdsdsdsd 我刚写了一个稀疏矩阵的代码
D. C++课程设计:矩阵计算器,具体看补充
断两个矩阵是否可以相加,如可以,计算两
E. c语言程序设计课程设计 图书管理系统 求原代码
高级语言程序设计(2)课程设计
一 程序设计说明书
【设计题目】 图书馆借阅管理
【问题描述】图书馆,适合用C++面向对象的功能来描述。图书馆管理系统分为借书、还书、图书管理和读者服务等四个部分。设计一个读者类Reader,记录每个读者基本信息;读者库类Rdatabase,记录所有读者信息;图书类Book, 记录每本书的基本信息;图书库类Bdatabase, 记录所有图书信息。
【基本要求】
1读者库类RDatabase中,其构造函数中,将read.txt文件中所有读入读者记录rede[]中。处理完毕,在析构函数中将read[]中的所有未删记录写入到read.txt中。
2图书库类BDatabase中,其构造函数中,将book.txt文件中所有读入图书记录book[]中。处理完毕,在析构函数中将book[]中的所有未删记录写入到book.txt中。
3 利用构造函数完成读者和图书数据初始化,完成内存分配。程序结束前,析构函数完成所申请的堆内存空间。
4 编写主函数,对所编写的矩阵类进行全面测试。要求用户界面采用菜单方式。测试中需要读者和图书数据通过I/O流从磁盘文件读入,同时显示在屏幕上。得到的数据通过I/O流写入磁盘文件保存,同时显示在屏幕上。
5 源程序中要有充分的注释,报告中要有详细的流程图和文字材料。
【类的设计】
该程序包含了四个类,如下:
1.Reader类,有读者的基本管理功能,具有以下私有数据:
int tag;//删除标记 1:已删;0:未删
int no;//读者编号
char name[10];//读者姓名
int borbook[Maxbor];//所借图书
2.读者库类Rdatabase, 具有以下私有数据:
int top;//读者记录指针
Reader read[Maxr];//读者记录
3.图书库类Book,有一本图书的基本功能,有以下私有数据:
int tag;//删除标记 1:已删;0:未删
int no;//图书编号
char name[20];//书名
int onshelf;//是否在架 1在架 0已借
4.图书库类BDatabase,有以下私有数据:
int top;//图书记录指针
Book book[Maxb];//图书记录
【特殊函数的设计说明】
构造函数
1.Reader类中构造函数Reader(),初始化函数;
2.读者库类RDatabase中,其构造函数Rdatabase(),将read.txt文件中所有读入读者记录rede[]中。
3.Book类中构造函数Book(),初始化函数;
4.图书库类BDatabase中,其构造函数中,将book.txt文件中所有读入图书记录book[]中。
拷贝构造函数
Reader类中的拷贝构造函数将getname()的返回值读者姓名拷贝到setname()中,Book类中的拷贝构造函数将getname()函数的返回值图书名拷贝到图书名设置函数setname()中。
析构函数
1.读者库类RDatabase中,其析构函数~Rdatabase(),将read[]中的所有未删记录写入到read.txt中;
2.图书库类BDatabase中,其析构函数~Bdatabase(),将book[]中的所有未删记录写入到book.txt中。
运算符重载
重载了“=”,当比较读者编号和图书编号时,重载;重载位运算符“〈〈”和“〉〉”等。
【主要函数算法流程图】
【程序的使用方法】
1.进入操作页面,按提示操作;
2.首先,新增图书和读者信息,之后就可以对以存在的信息进行操作;
3.操作当中,可以随时增加,更改和删除图书或读者信息;
4.当选择退出时,进行清屏。
二 程序上机调试报告
【语法错误及其排除】
1.在敲程序时,有很多拼写错误,例好多处把Readdata()误打Readdate();结束的分号,在不同的输入法状态下输入,这些小错误刚开始很难发现,不过有了经验,就很容易了。
2.创建新的构造函数时,使用出现了错误。重载构造函数要注意函数的访问权限,结果就不会出现错误。
【算法错误及其排除】
1.读者类中借书操作函数中,采用循环语句时判断读者已借图书量时for(int i=0;i<Maxbor;i++)误写为for(int i=1;i<Maxbor;i++),使循环发生错误。
2.指针使用错误,指针b和r混淆,导致编译错误得到“error C2660: 'retbook' : function does not take 1 parameters”错误报告。
三 程序测试结果
【收获及体会】
除了课堂外,课程设计是最能学到东西的,最考验人的。在做课程设计这段时间,时刻都感觉自己有好多不懂,要学的太多了!经过这次课程设计,让我对C++这门语言有了更深的认识,操作能力有了提高。要想得到敲的代码运行出来后的满足感,需要耐心细心,毅力以及充沛的体力。只有经过多次编辑,多次编译,再多次运行,才能编写出更好的程序,有时候需要多次的更正才达到所要的运行结果。学习编程,需要多揣摩,实践,实践,再实践,编程技能才能更上一层楼,此外还得多向高手请教!
【源程序代码】
//********************
//图书馆借阅管理
//班级:
//学号:
//姓名:
//********************
#include<iostream.h>
#include<iomanip.h>
#include<string.h>
#include<fstream.h>
const int Maxr=1000;//最多的读者
const int Maxb=10000;//最多的图书
const int Maxbor=8;//每位读者最多借8本书
class Reader //读者类
{
int tag;//删除标记 1已删;0未删
int no;//读者编号
char name[10];//读者姓名
int borbook[Maxbor];//所借图书
public :
Reader(){}//构造函数
char *getname(){return name;}//获取读者姓名
int gettag(){return tag;}//获取删除标记
int getno(){return no;}//获取读者编号
void setname(char na[])//设置读者姓名
{
strcpy(name,na);
}
void delbook(){tag=1;}//设置删除标记
void addreader(int n,char *na)//增加读者
{
tag=0;
no=n;
strcpy(name,na);
for(int i=0;i<Maxbor;i++)
borbook[i]=0;
}
void borrowbook(int bookid)//借书操作
{
for(int i=0;i<Maxbor;i++)
{
if(borbook[i]==0)
{
borbook[i]=bookid;
}
}
}
int retbook(int bookid)//还书操作
{
for(int i=0;i<Maxbor;i++)
{
if (borbook[i]==bookid)
{
borbook[i]=0;
return 1;
}
}
return 0;
}
void disp()//输出读者信息
{
cout<<setw(5)<<no<<setw(10)<<name<<"借书编号:";
for(int i=0;i,Maxbor;i++)
if(borbook[i]!=0)
cout<<borbook[i]<<endl;
}
};
class RDatabase//读者库类
{
int top;//读者记录指针
Reader read[Maxr];//读者记录
public:
RDatabase()//构造函数,将reader.txt读到read[]中
{
Reader s;
top=-1;
fstream file("reader.txt",ios::in);
while(1)
{
file.read((char*)&s,sizeof(s));
if(!file)break;
top++;
read[top]=s;
}
file.close();
}
void clear()//删除所有读者信息
{
top=-1;
}
int addreader(int n,char *na)//添加读者,检查是否已存在
{
Reader *p=query(n);
if(p==NULL)
{
top++;
read[top].addreader(n,na);
return 1;
}
return 0;
}
Reader*query(int readerid)//按编号查找
{
for(int i=0;i<=top;i++)
if(read[i].getno()==readerid&&read[i].gettag==0)
return &read[i];
return NULL;
}
void disp()//删除读者所有信息
{
for(int i=0;i<=top;i++)
read[i].disp();
}
void readerdata();//读者库维护
~RDatabase()//析构函数,将read[]写入reader.txt文件中
{
fstream file("reader.txt",ios::out);
for(int i=0;i<=top;i++)
if(read[i].gettag()==0)
file.write((char*)&read[i],sizeof(read[i]));
file.close();
}
};
void RDatabase::readerdata()
{
int choice=1;
char rname[20];
int readerid;
Reader*r;
while(choice!=0)
{
cout<<"读者服务 1新增 2更该 3删除 4查找 5显示 6全删 0退出"<<endl;
cin>>choice;
switch(choice)
{
case 1:
cout<<"请输入读者编号:";
cin>>readerid;
cout<<"读入读者姓名:";
cin>>rname;
addreader(readerid,rname);
break;
case 2:
cout<<"请输入读者编号:";
cin>>readerid;
r=query(readerid);
if(r==NULL)
{
cout<<"读者不存在"<<endl;
break;
}
cout<<"请输入新读者姓名:";
cin>>rname;
r->setname(rname);
break;
case 3:
cout<<"请输入读者编号:";
cin>>readerid;
r=query(readerid);
if(r==NULL)
{
cout<<"读者不存在"<<endl;
break;
}
r->delbook();
break;
case 4:
cout<<"请输入读者编号:";
cin>>readerid;
r=query(readerid);
if(r==NULL)
{
cout<<"该读者编号不存在"<<endl;
break;
}
case 5:
disp();
break;
case 6:
clear();
break;
}
}
}
class Book//图书类
{
int tag;//删除标记 1:已删;0:未删
int no;//图书编号
char name[20];//书名
int onshelf;//是否在架 1在架 0已借
public:
Book(){}
char*getname(){return name;}//获取读者姓名
int getno(){return no;}//获取图书编号
int gettag(){return tag;}//获取删除标记
void setname(char na[])//设置书名
{
strcpy(name,na);
}
void delbook(){tag=1;}//删除图书
void addbook(int n,char*na)//增加图书
{
tag=0;
no=n;
strcpy(name,na);
onshelf=1;
}
int borrowbook()//借书操作
{
if(onshelf==1)
{
onshelf=0;
return 1;
}
return 0;
}
void retbook()//还书操作
{
onshelf=1;
}
void disp()//输出图书
{
cout<<setw(6)<<no<<setw(18)<<name<<setw(10)<<(onshelf==1?"在架":"已借")<<endl;
}
};
class BDatabase//图书库类
{
int top;//图书记录指针
Book book[Maxb];//图书记录
public:
BDatabase()//构造函数,将book.txt读到book[]中
{
Book b;
top=-1;
fstream file("book.txt",ios::in);
while(1)
{
file.read((char*)&b,sizeof(b));
if(!file)break;
top++;
book[top]=b;
}
file.close();
}
void clear()//全删
{
top=-1;
}
int addbook(int n,char*na)//增加图书
{
Book*p=query(n);
if(p==NULL)
{
top++;
book[top].addbook(n,na);
return 1;
}
cout<<"新增成功!"<<endl;
}
Book*query(int bookid)//查找图书
{
for(int i=0;i<=top;i++)
if(book[i].getno()==bookid&&book[i].gettag()==0)
return NULL;
}
void bookdata();//图书库维护
void disp()
{
for(int i=0;i<=top;i++)
if(book[i].gettag()==0)
book[i].disp();
}
~BDatabase()//析构函数,将book[]写入book.txt文件中
{
fstream file("book.txt",ios::out);
for (int i=0;i<=top;i++)
if(book[i].gettag()==0)
file.write((char*)&book[i],sizeof(book[i]));
file.close();
}
};
void BDatabase::bookdata()
{
int choice;
char bname[40];
int bookid;
Book *b;
while(choice!=0)
{
cout<<"图书管理 1新增 2更该 3删除 4查找 5显示 6全删 0退出"<<endl;
cin>>choice;
switch(choice)
{
case 1:
cout<<"输入图书编号:";
cin>>bookid;
cout<<"输入图书书名:";
cin>>bname;
addbook(bookid,bname);
break;
case 2:
cout<<"输入图书编号:";
cin>>bookid;
b=query(bookid);
if(b==NULL)
{
cout<<"该图书不存在"<<endl;
break;
}
cout<<"输入新书名:";
cin>>bname;
b->setname(bname);
cout<<"更名成功!"<<endl;
break;
case 3:
cout<<"输入图书编号:";
cin>>bookid;
b=query(bookid);
if(b==NULL)
{
cout<<"该图书不存在!"<<endl;
break;
}
b->delbook();
break;
case 4:
cout<<"请输入图书编号:";
cin>>bookid;
b=query(bookid);
if(b==NULL)
{
cout<<"该书不存在!"<<endl;
break;
}
b->disp();
break;
case 5:
disp();
break;
case 6:
clear();
break;
}
}
}
void main()
{
int choice=1,bookid,readerid;
RDatabase ReaderDB;
Reader *r;
BDatabase BookDB;
Book *b;
while(choice!=0)
{
cout<<" 1借书 "<<endl;
cout<<" 2还书 "<<endl;
cout<<" 3图书维护 "<<endl;
cout<<" 4读者维护 "<<endl;
cout<<" 0离开 "<<endl;
cin>>choice;
switch(choice)
{
case 1:
cout<<"借书,请输入读者编号:";
cin>>readerid;
cout<<"图书编号:";
cin>>bookid;
r=ReaderDB.query(readerid);
if(r==NULL)
{
cout<<"哈哈,借书成功!";
break;
}
b=BookDB.query(bookid);
if(b==NULL)
{
cout<<"不存在该书!"<<endl;
break;
}
if(b->borrowbook()==0)
{
cout<<"该书已借"<<endl;
break;
}
r->borrowbook(b->getno());
break;
cout<<"借书成功!"<<endl;
case 2:
cout<<"还书,请输入读者编号:";
cin>>readerid;
cout<<"请输入图书编号;";
cin>>bookid;
r=ReaderDB.query(readerid);
if(r==NULL)
{
cout<<"不存在该读者!"<<endl;
break;
}
b->retbook();
r->retbook(b->getno());
break;
cout<<"还书成功!"<<endl;
case 3:
BookDB.bookdata();
break;
case 4:
ReaderDB.readerdata();
break;
}
}
}
【输出结果】
1借书
2还书
3图书管理
4读者服务
0退出
3
图书管理 1新增 2更该 3删除 4查找 5显示 6全删 0退出
1
输入图书编号:1111
输入图书书名:武林外传
新增成功!
图书管理 1新增 2更该 3删除 4查找 5显示 6全删 0退出
1
输入图书编号:2222
输入图书书名:今夜无眠
新增成功!
图书管理 1新增 2更该 3删除 4查找 5显示 6全删 0退出
0
1借书
2还书
3图书管理
4读者服务
0退出
4
读者服务 1新增 2更该 3删除 4查找 5显示 6全删 0退出
1
请输入读者编号:001
读入读者姓名:周强
读者服务 1新增 2更该 3删除 4查找 5显示 6全删 0退出
0
1借书
2还书
3图书管理
4读者服务
0退出
1
借书,请输入读者编号:001
图书编号:1111
哈哈,借书成功! 1借书
2还书
3图书管理
4读者服务
0退出
2
还书,请输入读者编号:001
请输入图书编号;1111
还书成功!
1借书
2还书
3图书管理
4读者服务
0退出
3
图书管理 1新增 2更该 3删除 4查找 5显示 6全删 0退出
2
输入图书编号:2222
输入新书名:金庸全集
更名成功!
Press any key to continue
F. 利用C语言完成课程设计:矩阵的基本运算,如何完成
匿名2010-04-27 矩阵抄是线性代数和袭矩阵论研究的主要对象,失求解微分方程组的重要工具,也是计算机图形学和计算机游戏开发的重要数学基础。矩阵的主要运算有数乘矩阵、两矩阵相加、相减、相乘和相除以及矩阵的转置,由于矩阵的除法涉及奇异值分解的问题,比较复杂,本课程设计暂不要求,紧要求完成矩阵最大维数不大于五维的矩阵数乘、加法、减法、乘法以及转置运算。 数学模型或问题分析: MA={ a00 a01 a02 ….. a0n a10 a11 a12 …... a1n . . . . . . . . am0 am1 am2 …… amn }= [ aij]i=1,2,3...m,j=1,2,3....n. MB= { b00 b01 b02 ….. b0q b10 b11 b12 …... b1q . . . . . . . . bp0 bp1 bp2 …… apq }=[brc]r=0,1,2...p,c=0,1,2...n。 利用实数k 相乘 。 我来回答匿名
G. 求高手写个矩阵类的设计与实现的C++程序
#include <stdio.h>
#define N 10
/*输入*/
void input(int a,int b,int (*in)[N])
{
int i,j,ele;
for(i=0;i<a;i++)
{
for(j=0;j<b;j++)
{
scanf("%d",&ele);
in[i][j]=ele;
}
}
}
/*输出*/
void output(int a,int b,int (*out)[N])
{
int i,j,n=0;
for(i=0;i<a;i++)
for(j=0;j<b;j++)
{
printf("%6d",out[i][j]);
n++;
if(n%b==0) printf("\n");
}
printf("\n");
}
/*矩乘*/
void multi(int m,int s,int n,int (*a)[N],int (*b)[N],int (*c)[N])
{
int i,j,k,sum=0;
for(i=0;i<m;i++)
{
for(j=0;j<n;j++)
{
for(k=0;k<s;k++)
sum+=a[i][k]*b[k][j];
c[i][j]=sum;
sum=0;
}
}
}
main()
{
int m,n,s;
int a[N][N],b[N][N],c[N][N];
char logic;
do
{
printf("请输入相乘矩阵的行数与列数(m×s)*(s×n)(m,s,n<=%d):\n",N);
scanf("%d%d%d",&m,&s,&n);
printf("左行数=%d 左行、右列数=%d 右列数=%d\n",m,s,n);
printf("请依次输入左、右矩阵的元素:\n");
input(m,s,a);
input(s,n,b);
printf("左矩阵为:\n");
output(m,s,a);
printf("右矩阵为:\n");
output(s,n,b);
printf("以上矩阵输入正确吗?(否(N))\n");
while(getchar()!='\n');
logic=getchar();
}
while((logic=='n')||(logic=='N'));
multi(m,s,n,a,b,c);
printf("所求矩阵为:\n");
output(m,n,c);
}
H. c++/c 课程设计 矩阵运算系统设定及实现
看看这个合不合你的要求,实现了任意大小矩阵的加减乘,有终端输入矩阵大小和每个元素。
这是头文件:
#include <iostream>
using std::cout;
using std::endl;
class Matrix{
public:
Matrix():row(0),column(0),m(0){}
Matrix(const Matrix& ma);
~Matrix();
void setMatrix(int r,int c,double **ma);
int getRow(){return row;}
int getColumn(){return column;}
void display();
Matrix& operator=(const Matrix& ma);
Matrix operator+(const Matrix& ma)const;
Matrix operator-(const Matrix& ma)const;
Matrix operator*(const Matrix& ma)const;
private:
int row;
int column;
double** m;
};
Matrix::Matrix(const Matrix &ma){
this->row=ma.row;
this->column=ma.column;
m=new double *[row];
for(int i=0;i<row;i++)
m[i]=new double[column];
for(int i=0;i<row;i++)
for(int j=0;j<column;j++)
m[i][j]=ma.m[i][j];
}
Matrix::~Matrix(){
for(int i=0;i<this->row;i++)
delete[] m[i];
delete[] m;
}
void Matrix::setMatrix(int r,int c,double** ma){
for(int i=0;i<this->row;i++)
delete[] m[i];
delete[] m;
this->row=r;
this->column=c;
m=new double *[row];
for(int i=0;i<row;i++)
m[i]=new double[column];
for(int i=0;i<row;i++)
for(int j=0;j<column;j++)
m[i][j]=ma[i][j];
}
void Matrix::display(){
if(m==0) cout<<"Matrix has not been initialised.\n";
else{
for(int i=0;i<row;i++){
for(int j=0;j<column;j++)
cout<<m[i][j]<<" ";
cout<<endl;
}
}
}
Matrix& Matrix::operator =(const Matrix &ma){
if(m!=0){
for(int i=0;i<this->row;i++)
delete[] m[i];
delete[] m;
}
this->row=ma.row;
this->column=ma.column;
m=new double *[row];
for(int i=0;i<row;i++)
m[i]=new double[column];
for(int i=0;i<row;i++)
for(int j=0;j<column;j++)
m[i][j]=ma.m[i][j];
return *this;
}
Matrix Matrix::operator +(const Matrix &ma) const{
double** result=new double *[this->row];
for(int i=0;i<this->row;i++)
result[i]=new double[this->column];
for(int i=0;i<this->row;i++)
for(int j=0;j<this->column;j++)
result[i][j]=this->m[i][j]+ma.m[i][j];
Matrix temp;
temp.setMatrix(this->row,this->column,result);
for(int i=0;i<this->row;i++)
delete[] result[i];
delete[] result;
return temp;
}
Matrix Matrix::operator -(const Matrix &ma) const{
double** result=new double *[this->row];
for(int i=0;i<this->row;i++)
result[i]=new double[this->column];
for(int i=0;i<this->row;i++)
for(int j=0;j<this->column;j++)
result[i][j]=this->m[i][j]-ma.m[i][j];
Matrix temp;
temp.setMatrix(this->row,this->column,result);
for(int i=0;i<this->row;i++)
delete[] result[i];
delete[] result;
return temp;
}
Matrix Matrix::operator *(const Matrix &ma) const{
double** result=new double *[this->row];
for(int i=0;i<this->row;i++)
result[i]=new double[this->column];
double entry;
for(int i=0;i<this->row;i++)
for(int j=0;j<ma.column;j++){
entry=0;
for(int k=0;k<this->column;k++)
entry=entry+(this->m[i][k])*(ma.m[k][j]);
result[i][j]=entry;
}
Matrix temp;
temp.setMatrix(this->row,ma.column,result);
for(int i=0;i<this->row;i++)
delete[] result[i];
delete[] result;
return temp;
}
这是主程序:
#include <iostream>
#include <cstring>
using std::cout;
using std::cin;
using std::endl;
#include "Matrix.h"
int main(){
int i;
Matrix op1;
Matrix op2;
Matrix result;
do{
cout<<"1.Enter operand 1 2.Enter operand 2 3.Add 4.Subtract 5.Multiply 6.Display 7.Quit"<<endl;
cout<<"Enter your choice: ";
cin>>i;
if(i==1){
int r,c;
cout<<"Enter the number of rows for operand 1: ";
cin>>r;
cout<<"Enter the number of columns for operand 1: ";
cin>>c;
double** m=new double *[r];
for(int j=0;j<r;j++)
m[j]=new double[c];
cout<<"Enter the elements of operand 1, from left to right and from top to bottom:"<<endl;
for(int j=0;j<r;j++)
for(int k=0;k<c;k++)
cin>>m[j][k];
op1.setMatrix(r,c,m);
for(int j=0;j<r;j++)
delete[] m[j];
delete m;
}
else if(i==2){
int r,c;
cout<<"Enter the number of rows for operand 2: ";
cin>>r;
cout<<"Enter the number of columns for operand 2: ";
cin>>c;
double** m=new double *[r];
for(int j=0;j<r;j++)
m[j]=new double[c];
cout<<"Enter the elements of operand 2, from left to right and from top to bottom:"<<endl;
for(int j=0;j<r;j++)
for(int k=0;k<c;k++)
cin>>m[j][k];
op2.setMatrix(r,c,m);
for(int j=0;j<r;j++)
delete[] m[j];
delete m;
}
else if(i==3){
if(op1.getRow()>0&&op1.getColumn()>0&&op2.getRow()>0&&op2.getColumn()>0&&op1.getRow()==op2.getRow()&&op1.getColumn()==op2.getColumn()){
result=op1+op2;
cout<<endl<<"The result of op1 plus op2 is:"<<endl;
result.display();
}
else cout<<"The dimensions of the two operands do not match. Unable to do the addition."<<endl;
}
else if(i==4){
if(op1.getRow()>0&&op1.getColumn()>0&&op2.getRow()>0&&op2.getColumn()>0&&op1.getRow()==op2.getRow()&&op1.getColumn()==op2.getColumn()){
result=op1-op2;
cout<<endl<<"The result of op1 minus op2 is:"<<endl;
result.display();
}
else cout<<"The dimensions of the two operands do not match. Unable to do the subtraction."<<endl;
}
else if(i==5){
if(op1.getRow()>0&&op1.getColumn()>0&&op2.getRow()>0&&op2.getColumn()>0&&op1.getColumn()==op2.getRow()){
result=op1*op2;
cout<<endl<<"The result of op1 times op2 is:"<<endl;
result.display();
}
else cout<<"The dimensions of the two operands do not match. Unable to do the multiplication."<<endl;
}
else if(i==6){
int j;
cout<<"Which matrices do you want to display?"<<endl;
cout<<"1.Operand 1 2.Operand 2 3.Result"<<endl;
cin>>j;
if(j==1) op1.display();
if(j==2) op2.display();
if(j==3) result.display();
}
else if(i==7) break;
}while(1);
return 0;
}
I. 矩阵类的设计,用C++,要求:定义矩阵类,包含行、列和矩阵数据元素;
我没有重载函数,只重载了运算符,你看看行不行。
这是头文件:
#ifndef MATRIX_H
#define MATRIX_H
#include <iostream>
using std::cout;
using std::endl;
class Matrix{
public:
Matrix():row(0),column(0),m(0){}
Matrix(const Matrix& ma);
~Matrix();
void setMatrix(int r,int c,double **ma);
int getRow(){return row;}
int getColumn(){return column;}
void display();
Matrix& operator=(const Matrix& ma);
Matrix operator+(const Matrix& ma)const;
Matrix operator-(const Matrix& ma)const;
Matrix operator*(const Matrix& ma)const;
private:
int row;
int column;
double** m;
};
Matrix::Matrix(const Matrix &ma){
this->row=ma.row;
this->column=ma.column;
m=new double *[row];
for(int i=0;i<row;i++)
m[i]=new double[column];
for(int i=0;i<row;i++)
for(int j=0;j<column;j++)
m[i][j]=ma.m[i][j];
}
Matrix::~Matrix(){
for(int i=0;i<this->row;i++)
delete[] m[i];
delete[] m;
}
void Matrix::setMatrix(int r,int c,double** ma){
for(int i=0;i<this->row;i++)
delete[] m[i];
delete[] m;
this->row=r;
this->column=c;
m=new double *[row];
for(int i=0;i<row;i++)
m[i]=new double[column];
for(int i=0;i<row;i++)
for(int j=0;j<column;j++)
m[i][j]=ma[i][j];
}
void Matrix::display(){
if(m==0) cout<<"Matrix has not been initialised.\n";
else{
for(int i=0;i<row;i++){
for(int j=0;j<column;j++)
cout<<m[i][j]<<" ";
cout<<endl;
}
}
}
Matrix& Matrix::operator =(const Matrix &ma){
if(m!=0){
for(int i=0;i<this->row;i++)
delete[] m[i];
delete[] m;
}
this->row=ma.row;
this->column=ma.column;
m=new double *[row];
for(int i=0;i<row;i++)
m[i]=new double[column];
for(int i=0;i<row;i++)
for(int j=0;j<column;j++)
m[i][j]=ma.m[i][j];
return *this;
}
Matrix Matrix::operator +(const Matrix &ma) const{
double** result=new double *[this->row];
for(int i=0;i<this->row;i++)
result[i]=new double[this->column];
for(int i=0;i<this->row;i++)
for(int j=0;j<this->column;j++)
result[i][j]=this->m[i][j]+ma.m[i][j];
Matrix temp;
temp.setMatrix(this->row,this->column,result);
for(int i=0;i<this->row;i++)
delete[] result[i];
delete[] result;
return temp;
}
Matrix Matrix::operator -(const Matrix &ma) const{
double** result=new double *[this->row];
for(int i=0;i<this->row;i++)
result[i]=new double[this->column];
for(int i=0;i<this->row;i++)
for(int j=0;j<this->column;j++)
result[i][j]=this->m[i][j]-ma.m[i][j];
Matrix temp;
temp.setMatrix(this->row,this->column,result);
for(int i=0;i<this->row;i++)
delete[] result[i];
delete[] result;
return temp;
}
Matrix Matrix::operator *(const Matrix &ma) const{
double** result=new double *[this->row];
for(int i=0;i<this->row;i++)
result[i]=new double[this->column];
double entry;
for(int i=0;i<this->row;i++)
for(int j=0;j<ma.column;j++){
entry=0;
for(int k=0;k<this->column;k++)
entry=entry+(this->m[i][k])*(ma.m[k][j]);
result[i][j]=entry;
}
Matrix temp;
temp.setMatrix(this->row,ma.column,result);
for(int i=0;i<this->row;i++)
delete[] result[i];
delete[] result;
return temp;
}
#endif
这是主程序:
#include <iostream>
#include <cstring>
using std::cout;
using std::cin;
using std::endl;
#include "Matrix.h"
int main(){
int i;
Matrix op1;
Matrix op2;
Matrix result;
do{
cout<<"1.Enter operand 1 2.Enter operand 2 3.Add 4.Subtract 5.Multiply 6.Display 7.Quit"<<endl;
cout<<"Enter your choice: ";
cin>>i;
if(i==1){
int r,c;
cout<<"Enter the number of rows for operand 1: ";
cin>>r;
cout<<"Enter the number of columns for operand 1: ";
cin>>c;
double** m=new double *[r];
for(int j=0;j<r;j++)
m[j]=new double[c];
cout<<"Enter the elements of operand 1, from left to right and from top to bottom:"<<endl;
for(int j=0;j<r;j++)
for(int k=0;k<c;k++)
cin>>m[j][k];
op1.setMatrix(r,c,m);
for(int j=0;j<r;j++)
delete[] m[j];
delete m;
}
else if(i==2){
int r,c;
cout<<"Enter the number of rows for operand 2: ";
cin>>r;
cout<<"Enter the number of columns for operand 2: ";
cin>>c;
double** m=new double *[r];
for(int j=0;j<r;j++)
m[j]=new double[c];
cout<<"Enter the elements of operand 2, from left to right and from top to bottom:"<<endl;
for(int j=0;j<r;j++)
for(int k=0;k<c;k++)
cin>>m[j][k];
op2.setMatrix(r,c,m);
for(int j=0;j<r;j++)
delete[] m[j];
delete m;
}
else if(i==3){
if(op1.getRow()>0&&op1.getColumn()>0&&op2.getRow()>0&&op2.getColumn()>0&&op1.getRow()==op2.getRow()&&op1.getColumn()==op2.getColumn()){
result=op1+op2;
cout<<endl<<"The result of op1 plus op2 is:"<<endl;
result.display();
}
else cout<<"The dimensions of the two operands do not match. Unable to do the addition."<<endl;
}
else if(i==4){
if(op1.getRow()>0&&op1.getColumn()>0&&op2.getRow()>0&&op2.getColumn()>0&&op1.getRow()==op2.getRow()&&op1.getColumn()==op2.getColumn()){
result=op1-op2;
cout<<endl<<"The result of op1 minus op2 is:"<<endl;
result.display();
}
else cout<<"The dimensions of the two operands do not match. Unable to do the subtraction."<<endl;
}
else if(i==5){
if(op1.getRow()>0&&op1.getColumn()>0&&op2.getRow()>0&&op2.getColumn()>0&&op1.getColumn()==op2.getRow()){
result=op1*op2;
cout<<endl<<"The result of op1 times op2 is:"<<endl;
result.display();
}
else cout<<"The dimensions of the two operands do not match. Unable to do the multiplication."<<endl;
}
else if(i==6){
int j;
cout<<"Which matrices do you want to display?"<<endl;
cout<<"1.Operand 1 2.Operand 2 3.Result"<<endl;
cin>>j;
if(j==1) op1.display();
if(j==2) op2.display();
if(j==3) result.display();
}
else if(i==7) break;
}while(1);
return 0;
}
J. 跪求C语言两个矩阵相乘的课程设计报告!!急!!!!
你的程序有问题额~~
clrscr();未声明?
main函数前面少了int