如何检查二维字符数组是否为空

时间:2018-06-27 21:55:52

标签: c++ arrays function

这里有两个包含某些单词的二维字符数组。 我正在尝试制作一个函数,如果双精度数组包含空C字符串('')的单词,则返回false;如果每个单词包含至少一个字母,则返回true。

#include <iostream>
using namespace std;

const int MAX_WORD_LENGTH = 20;

bool checkEmptyString(const char word[][MAX_WORD_LENGTH + 1], int numOfWords);

int main()
{
    const char dict1[][MAX_WORD_LENGTH + 1] = {"Hello", "What", ""};
    const char dict2[][MAX_WORD_LENGTH + 1] = {"Hello", "Hey" "Man", "Sup"};

    if (checkEmptyString(dict1, 3))
         cout << "Dictionary 1 is empty!" << endl;
    else 
         cout << "Dictionary 1 is not empty!" << endl;

    if (checkEmptyString(dict2, 4))
        cout << "Dictionary 2 is empty!" << endl;
    else
        cout << "Dictionary 2 is not empty!" << endl;

    system("pause");
    return 0;
}

bool checkEmptyString(const char word[][MAX_WORD_LENGTH + 1], int numOfWords)
{
   // Enter code here ... //
}

我该如何实现生成所需结果的功能?

1 个答案:

答案 0 :(得分:0)

for(int i=0; i<numOfWords; i++) {
    int j=0;
    while(word[i][j]) j++;
    if(!j) return true;
}
return false;

我认为这可以完成工作。