概述
第1关:实践题
求最大值
#include <iostream> // 编译预处理命令
#include <string.h> // 编译预处理命令
using namespace std; // 使用命名空间std
template <class ElemType>
ElemType Max(ElemType x, ElemType y)
{
/********* Begin *********/
// 求x, y的最大值
return x>y?x:y;
/********* End *********/
}
char *Max(char *s1, char *s2)
{
/********* Begin *********/
// 求s1,s2的最大值
return strcmp(s1,s2)>0?s1:s2;
/********* End *********/
}
template <class ElemType>
ElemType Max(ElemType x, ElemType y, ElemType z)
{
/********* Begin *********/
// 求x,y,z的最大值
ElemType tem=x>y?x:y;
return tem>z?tem:z;
/********* End *********/
}
template <class ElemType>
ElemType Max(ElemType a[], int n)
{
/********* Begin *********/
// 求a[0],a[1],...,a[n-1]的最大值
ElemType m=a[0];
for(int i=1;i<n;i++)
if(m<a[i]) m=a[i];
return m;
/********* End *********/
}
第2关:实践题
建立复数类模板
#include <iostream> // 编译预处理命令
using namespace std; // 使用命名空间std
// 声明复数类模板
template <class ElemType>
class Complex
{
private:
// 数据成员
// 在下面对real和image进行声明
/********* Begin *********/
ElemType real;
ElemType image;
/********* End *********/
public:
// 公有函数
Complex(ElemType r = 0, ElemType i = 0): real(r), image(i){ }
// 在下面对Show、Add和Sub函数进行声明
/********* Begin *********/
void Show() const;
static Complex Add(const Complex &z1,const Complex &z2);
static Complex Sub(const Complex &z1,const Complex &z2);
/********* End *********/
};
// 在下面定义成员函数
// 显示复数
template <class ElemType>
void Complex<ElemType>::Show() const
{
// 显示复数据,显示格式说“实部+虚部i”,例如:2+3i, 2-3i, -2+3i, 8, -8, 8i, -5i, 0
// 在显示完复数后不用加换行符
/********* Begin *********/
if (real != 0)
{ // real非0,对image进行讨论(为负,为0,为正),可能输出示例:2-3i, 8, -8, 2+3i
if(image<0) cout<<real<<image<<"i";
else if(image==0) cout<<real;
else cout<<real<<"+"<<image<<"i";
}
else
{ // real为0,对image进行讨论(为0,非0),可能输出示例:0, 8i, -5i
if(image==0) cout<<real;
else cout<<image<<"i";
}
/********* End *********/
}
// 复数加法
template <class ElemType>
Complex<ElemType> Complex<ElemType>::Add(const Complex &z1, const Complex &z2)
{
// 返回复数z1与z2之和
/********* Begin *********/
Complex z(z1.real+z2.real,z1.image+z2.image);
return z;
/********* End *********/
}
// 复数减法
template <class ElemType>
Complex<ElemType> Complex<ElemType>::Sub(const Complex &z1, const Complex &z2)
{
// 返回复数z1与z2之差
/********* Begin *********/
Complex z(z1.real-z2.real,z1.image-z2.image);
return z;
/********* End *********/
}
最后
以上就是慈祥火车为你收集整理的C++面向对象程序设计实训4的全部内容,希望文章能够帮你解决C++面向对象程序设计实训4所遇到的程序开发问题。
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
发表评论 取消回复