- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
实现和操作数据结构复杂
/*******************************************/
//文件名: * * *
//作者:湖北科技学院 计科院 曹帅
//日期:2013.10.28
//功能:实现复数的基本操作
/*******************************************/
//头文件
#includestdio.h
#includemalloc.h
#includestdlib.h
#includewindows.h
#includeconio.h
//函数返回状态代码
#define OK 1
#define ERROR 0
#define TRUE 1
#define FALSE 0
#define INFEASIBLE -1
#define OVERFLOW -2
//使用动态分配的顺序存储结构
typedef int Status;
typedef int ElemType;
typedef ElemType * Complex;
Status InitComplex(Complex C,ElemType real,ElemType imag){
//初始化一个复数
C=(ElemType *)malloc(2*sizeof(ElemType));
if(!C) exit(OVERFLOW);
C[0]=real;C[1]=imag;
return OK;
}//InitComplex
Status DestroyComplex(Complex C){
//销毁一个复数
free(C);
C=NULL;
return OK;
}//DestroyComplex
Status GetReal(Complex C,ElemType real){
//获取复数的实数部分
real=C[0];
return OK;
}//GetReal
Status AddComplex(Complex C1,Complex C2,Complex C3){
//两个复数相加
C3=(ElemType *)malloc(2*sizeof(ElemType));
if(!C3) exit(OVERFLOW);
C3[0]=C1[0]+C2[0];
C3[1]=C1[1]+C2[1];
return OK;
}//AddComplex
Status MultiplyComplex(Complex C1,Complex C2,Complex C4){
//两个复数相乘
C4=(ElemType *)malloc(2*sizeof(ElemType));
if(!C4) exit(OVERFLOW);
C4[0]=C1[0]*C2[0]-C1[1]*C2[1];
C4[1]=C1[0]*C2[1]+C1[1]*C2[0];
return OK;
}//MutiplyComplex
Status SubComplex(Complex C1,Complex C2,Complex C5){
//两个复数相减
C5=(ElemType *)malloc(2*sizeof(ElemType));
if(!C5) exit(OVERFLOW);
C5[0]=C1[0]-C2[0];
C5[1]=C1[1]-C2[1];
return OK;
}//SubComplex
Status DivComplex(Complex C1,Complex C2,Complex C6){
//两个复数相除
C6=(ElemType *)malloc(2*sizeof(ElemType));
if(!C6) exit(OVERFLOW);
C6[0]=(C1[0]*C2[0]+C1[1]*C2[1])/(C2[0]*C2[0]+C2[1]*C2[1]);
C6[1]=(C1[0]*C2[1]-C1[1]*C2[0])/(C2[0]*C2[0]+C2[1]*C2[1]);
return OK;
}//AddComplex
void main()
{
Complex C1,C2,C3,C4,C5,C6;
ElemType real1,imag1,real2,imag2,temp;
int select,i;
while(1)
{
printf(\n\t\t**********复数操作菜单***********\n\n);
printf(\t\t 1.复数的输入;\n);
printf(\t\t 2.复数的输出;\n);
printf(\t\t 3.复数的四则运算;\n);
printf(\t\t 4.
您可能关注的文档
- 胃肠炎(gastroenteritis).doc
- 胃肠道息肉及息肉病诊治的有关进展(Advances in diagnosis and treatment of gastrointestinal polyps and polyposis).doc
- 胰岛素444(Insulin 444).doc
- 胰岛素笔针头重复使用的危害(The dangers of repeated use of insulin pen needles).doc
- 胎兒畸形的成因(Causes of fetal malformation).doc
- 肾移植术后早期CsA- C2治疗窗浓度探讨(Study on the therapeutic window concentration of CsA- and C2 in early stage after renal transplantation).doc
- 胸透(Chest).doc
- 胭脂(Rouge).doc
- 能力导向打造核心竞争力(Ability oriented to build core competitiveness).doc
- 能够起到安慰人的开心话(Comforting words that can comfort people).doc
文档评论(0)