gpt4 book ai didi

c++ - 将字符数组分解为单词

转载 作者:行者123 更新时间:2023-11-30 21:28:32 25 4
gpt4 key购买 nike

我需要一些帮助来解决这个问题,

如何根据特定分隔符将像“char* text”这样的字符数组分解为单个单词,并将它们保存为“char* text[]”形式,而不使用 strtok 函数或除“iostream”之外的任何库。

在正常情况下,我会使用字符串而不是 char 数组和 strtok 函数,但在这种情况下,我根本不允许这样做。

谢谢

更新:我已经包含了我尝试过的内容

#include <iostream>
#include <fstream>
//#define MAX_CHARS_PER_LINE = 512;
//#define MAX_TOKENS_PER_LINE = 5;
using namespace std;
char stringToken(char* input_string);
int main(int argc, char* argv[])
{
char input_string[512];
ifstream infile;
infile.open(argv[1]);
while(!infile.eof())
{
infile.getline(input_string, 512);
cout << "Main line: " << input_string << endl;
stringToken(input_string);
}
infile.close();
return 0;
}
char stringToken(char* input_string)
{
//char* word;
//cout << "String token function: " << input_string << endl;
/*while(input_string >> word)
{
cout << word << endl;
}*/

char *tempone;
char *temptwo[5];

int ii=0,
jj=0;
while(input_string[ii] != '\0' && jj<5)
{
if((int)input_string[ii]!= 32 && (int)input_string[ii]!= 9 && (int)input_string[ii] != 44)
{
tempone[ii]=input_string[ii];
//cout << "\n\nindiv char" << input_string[ii] << "\t\t" << (int)input_string[ii] << "\n\n";
}
else
{
temptwo[jj]=tempone;
jj++;
//testing
cout << temptwo << endl;
}
ii++;

}



return 0;
}

最佳答案

这里是伪代码

words split(line, delims)
{
nb_words = cound_words(line);
words = allocate_words(nb_words + 1); // words is a array of pointer
i = 0
j = 0
while true
{
while line[i] in delims // we transform every delims into a end string
{
line[i] = end_string
i++
}
if line[i] not end_string
{
words[j] = line + i // we stock the address of line[i]
j++
while line[i] not in delims and line[i] not end_string
{
i++
}
}
else
{
words[j] = NULL // we end the array by NULL pointer
return words
}
}
}

count_word 使用类似的循环。我让你找到它。该算法的目的是将行转换为多个单词。因此,只要你使用文字,线条就必须有生命力。

关于c++ - 将字符数组分解为单词,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40698564/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com