0

这是在 Ansi C 中。我得到了一个字符串。我应该创建一个方法,该方法返回一个字符指针数组,这些指针指向所述字符串的每个单词的开头。我不允许使用 Malloc,而是告诉我输入的最大长度为 80。

另外,在有人因为我不搜索论坛而抨击我之前,我不能使用 strtok :(

char input[80] = "hello world, please tokenize this string"

并且方法的输出应该有6个元素;

output[0] points to the "h",
output[1] points to the "w",

等等。

我应该如何编写方法?

此外,我需要一种类似的方法来处理来自最多 110 行文件的输入。

4

2 回答 2

1

伪代码:

boolean isInWord = false
while (*ptr != NUL character) {
   if (!isInWord and isWordCharacter(*ptr)) {
       isInWord = true
       save ptr
   } else if (isInWord and !isWordCharacter(*ptr)) {
       isInWord = false
   }
   increment ptr
}

isWordCharacter检查字符是否是单词的一部分。根据您的定义,它可以只是字母字符(识别part-time为 2 个单词),也可能包含-(识别part-time为一个单词)。

于 2012-06-22T04:26:06.797 回答
0

因为这是家庭作业,所以这是您可能需要的一部分:

char* readPtr = input;
char* wordPtr = input;
int wordCount = 0;
while (*readPtr++ != ' ');
/* Here we have a word from wordPtr to readPtr-1 */
output[wordCount++] = /* something... :)  */

您需要循环使用它,并且必须考虑如何移动到下一个单词,并检查输入是否结束。

于 2012-06-22T04:34:28.967 回答