C++primer plus第六版课后编程题答案8.6

__________________________________________________________________________________________________________________________________________

下面的是正确的,后面的有点小问题。

#include <iostream>
#include <cstring>
using namespace std;


template <typename AnyType>
AnyType maxn(AnyType arr[],int size)//模板类
{
    AnyType max=arr[0];
    for(int i=0;i<size;i++)
    {
        if(arr[i]>max)
            max=arr[i];
    }
    return max;
};
template <> char *maxn<char *>(char *a[],int n)
{
char *pa=a[0];
for (int i=1;i<n;i++)
{
int temp=strlen(pa);
if(temp<strlen(a[i]))
pa=a[i];
else pa=pa;
}
return pa;
}
int main()
{
    int a[6]={10,3,50,45,33,60};
    double b[4]={4.5,6.7,2.5,3.1};
    char *c[5]={"you","heheshui","oo","tianxia","end"};
    cout<<"The amax is "<<maxn(a,6)<<endl;
    cout<<"The bmax is "<<maxn(b,4)<<endl;
    cout<<"The cmax is "<<maxn(c,5)<<endl;
    return 0;
}

感谢网友的指出。

-------------2014.10.8

—————————————————————————————————————————————————————————————————————————————




8.6

#include <iostream>
#include <string>
using namespace std;

template <typename AnyType>
AnyType maxn(AnyType arr[],int size)//模板类
{
	AnyType max=arr[0];
	for(int i=0;i<size;i++)
	{
		if(arr[i]>max)
			max=arr[i];	
	}
	return max;
};
template <>string maxn<string>(string arr[],int size)//具体化
{
	int max=0;//用于记录最大的字符串长度
	int temp=0;//用于记录字符串长度
	int place=0;//用于记录所在位置
	for(int i=0;i<size;i++)
	{
		temp=arr[i].length();
		if(temp>max)
		{
			max=temp;	
			place=i;//记录字符串所在位置
		}
	}
	//return arr[max];
	return arr[place];
};

void main86()
{
	int a[6]={10,3,50,45,33,60};
	double b[4]={4.5,6.7,2.5,3.1};
	string c[5]={"you","heheshui","oo","tianxia","end"};
	cout<<"The amax is "<<maxn(a,6)<<endl;
	cout<<"The bmax is "<<maxn(b,4)<<endl;
	cout<<"The cmax is "<<maxn(c,5)<<endl;


	system("pause");

}


评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值