2

我目前正在学习 C++,所以我对该主题没有太多了解。我正在使用 C++ 入门加书,这就是问题所在:

编写一个模板函数 maxn(),它的参数是一个类型为 T 的项的数组和一个表示数组中元素数量的整数,并返回数组中的最大项。在使用函数模板的程序中对其进行测试,该函数模板包含一个包含六个 int 值的数组和一个包含四个 double 值的数组。该程序还应该包括一个特殊化,它将一个指向字符的指针数组作为参数,将指针的数量作为第二个参数,并返回最长字符串的地址。如果多个字符串的长度最长,函数应该返回第一个最长的字符串的地址。使用由五个字符串指针组成的数组测试特化。

这是我的代码:

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

template <class T> T maxn(T arr[] , int n);
template <> char * maxn<char (*)[10]> (char (*arr)[10] , int n);

int main()
{
    double array[5] = { 1.2 , 4.12 ,7.32 ,2.1 ,3.5};
    cout << endl << maxn(array , 5) << endl << endl;

    char strings[5][6] = { "asta" , " m" , "ta" , "taree" , "e"};
    cout << maxn(strings , 5) << endl;

    return 0;
}

template <class T> T maxn(T arr[] , int n)
{
    T max = 0;
    for (int i = 0 ; i < n ; ++i)
    {
        if (arr[i] > max)
        max = arr[i];
    }
    return max;

}

template <> char * maxn<char (*)[10]> (char (*arr)[10] , int n)
{
    int length = 0;
    int mem = 0;
    for ( int i = 0 ; i < n ; ++i)
    {
        if (strlen(arr[i]) > length)
        {
            length = strlen(arr[i]);
            mem = i;
        }
    }
    return arr[mem];
}

我正在尝试传递一个字符串数组。我收到以下错误:

    g++ -Wall -o "untitled5" "untitled5.cpp" (in directory: /home/eukristian)
untitled5.cpp:6: error: template-id ‘maxn<char (*)[10]>’ for ‘char* maxn(char (*)[10], int)’ does not match any template declaration
untitled5.cpp: In function ‘int main()’:
untitled5.cpp:14: error: no matching function for call to ‘maxn(char [5][6], int)’
untitled5.cpp: At global scope:
untitled5.cpp:31: error: template-id ‘maxn<char (*)[10]>’ for ‘char* maxn(char (*)[10], int)’ does not match any template declaration
Compilation failed.

我很确定我犯了一些新手错误,我无法检测到它。谢谢 。

4

3 回答 3

7

char (*)[10]是一个指向 10 个字符的数组的指针。char *[10]是一个由 10 个字符指针组成的数组。

此外,如果函数应该返回char*,那么您指定的返回值类型与 TIE 不同,那么 T 的值也应该是char*。你的专业应该是这样的:

template <> char * maxn<char *> (char *arr[] , int n);

此外,您的字符串数组应该是 type char *[5]

于 2009-09-15T14:22:00.500 回答
1

该程序还应该包括一个特殊化,它将一个指向字符的指针数组作为参数,将指针的数量作为第二个参数,并返回最长字符串的地址。

您在代码中拥有的不是那个,而是一个二维字符数组(一个 5 * 6 字节的内存块)。与五个指针数组比较

const char* strings[5] = {"asta" , " m" , "ta" , "taree" , "e"};

您的代码还假设 0 是任何 T 的最小值。

于 2009-09-15T14:57:02.347 回答
1
#include <iostream>
#include <cstring>
#include <locale>
//#include <windows.h>

using namespace std;

const int maxcharval   = 5;
const int maxintval    = 6;
const int maxdoubleval = 4;

template <typename T>
T maxn(T* arr, int n);
template <> const char * maxn <const char *> (const char* arr[], int n);

int main(int argc, char *argv[])
{
    //setlocale(LC_CTYPE, ".866");
    const char * charr[] = {"qwer","qwert","qwe","qw","q"};
    const int    intarr[] = {1,3,2,5,3,0};
    const double doublearr[] = {5.4, 2.3, 3.1, 3.2};
    cout << "maxint: " << maxn(intarr, maxintval) << endl;
    cout << "maxdouble: " << maxn(doublearr, maxdoubleval)
         << endl;
    cout << "maxcharstring:" << maxn(charr, maxcharval)
         << endl;
    //system("pause");
    return 0;
}

template <typename T>
T maxn(T *arr, int n)
{
    T* value = &arr[0];
    for (int i = 1; i < n; i++)
    {
        if (*value < arr[i])
            value = &arr[i];
    }
    return *value;
}

template <> const char * maxn <const char *>(const char* arr[], int n)
{
    const char* val = arr[0];
    for (int i = 1; i < n; i++)
    {
        if (strlen(val) < strlen(arr[i]))
            val = arr[i];
    }
    return val;
}

这是工作。祝你好运!

于 2011-09-21T12:47:12.463 回答