我很抱歉我是C的新手。我之前学到了一点C ++,我可能会在C和C ++之间混淆。但我正在尝试编写一个C程序。我在C ++中唯一能应用的就是vector。这对我来说是一个练习。请告诉我我犯的任何错误。非常感谢。
我正在开发一个程序来计算文本文件中单词的频率,并在文本文件中输出单词列表和相应的频率。程序中止并显示错误消息:
C2036: 'char(*)[]: unknown size'.
它指向矢量文件中的以下行:
1475: _Move_unchecked(_VIPTR(_Where) + 1, this->_Mylast(), _VIPTR(_Where));
1476: _Destroy(this->_Mylast() - 1, this->_Mylast());
1478: --this->_Mylast();
我能理解的是
上的信息line 1474: _DEBUG_ERROR("vector erase iterator outside range");
但我不知道这个问题。我确实搜索了类似的问题,但我发现解决方案特定于海报的代码。请帮忙。感谢。
#include <stdio.h>
#include <stdlib.h>
#include <vector>
#include <ctype.h>
void main(int argc, char *argv[])
{
char *str;
int wordLocation, insertLocation, wordLength;
wordLocation = insertLocation = wordLength = 0;
char *wordCheck;
std::vector<char[]> word;
std::vector<int> frequency;
std::vector<char[]> tempWord;
int tempFreq;
FILE *file;
file = fopen(argv[1], "r");
if (file)
{
//Read file test
/*while (fscanf(file, "%s", str)!= EOF)
{
printf("s%\n",str);
}
*/
while (fscanf(file, "%s",word.end()) != EOF)
{
wordCheck = word[wordLocation];
wordLength = strlen(wordCheck);
for (int i = 0; i < wordLength; i++, wordCheck++)
{
// Check and remove punctuation
if (ispunct(*wordCheck))
{
*wordCheck = ' ';
}
// Check uppercase and transform to lowercase
if (*wordCheck >= 'A' && *wordCheck <= 'Z')
{
*wordCheck = putchar(tolower(*wordCheck));
}
}
// Start to compare word in vector word
if (int(word.size()) == 1)
{
//only contain 1 input
frequency[wordLocation] = 1;
}
else
{
for (int i = 0; i <= wordLocation; i++)
{
// Look for the same word
if (word[i] == word[wordLocation])
{
frequency[i]++;
word.erase(word.end()-1);
break;
}
// Add new word at the end
else if (i == wordLocation && word[i] != word[wordLocation])
{
frequency[wordLocation] = 1;
}
}
}
wordLocation++;
}
// Word Sorting
for (int i = 0; i <= wordLocation; i++)
{
for (int k = 0; k <= wordLocation - 1; k++)
{
if (frequency[i] < frequency[i + 1])
{
//Swap element
tempWord.insert(tempWord.begin(),word[i]);
tempFreq = frequency[i];
word.erase(word.begin());
frequency.erase(frequency.begin());
word.insert(word.begin() + i + 1, tempWord.front());
frequency.insert(frequency.begin() + i + 1,tempFreq);
tempWord.pop_back();
}
}
}
// After sorting, write into the file
fclose(file);
remove("output.txt");
file = fopen("output.txt", "a");
file = fopen("output.txt", "w");
for (int i = 0; i <= wordLocation; i++)
{
fprintf(file, "%s %d \n", word[i], frequency[i]);
}
printf("Create output.txt successed.");
}
else
{
printf("Read file fail. Please check the input path.\n");
}
}
答案 0 :(得分:2)
C2036:'char(*)[]:未知大小'。
它造成了因为
std::vector<char[]> tempWord;
错误(你必须指定大小或使用指针)以及在char
中使用C++
数组的坏主意。
改为使用std::string
ot std::array
。
std::vector<std::string> tempWord;
void main
导致未定义的行为
入口点必须声明为
int main(void)
{
return 0; // Optimal
}
或者使用args
int main(int argc, char *argv[])
{
return 0; // Optimal
}
此外,您正在使用未初始化的指针并尝试在那里复制数据 - &gt; UB
char *str;
while (fscanf(file, "%s",str) != EOF)
我建议你使用自动阵列,因为你是初学者。
char str[1024];
第1474行:_DEBUG_ERROR(“向量擦除迭代器超出范围”);
您正在为std::vector
编制索引,但它没有任何推送值 - &gt; UB
word[wordLocation];
首先,你必须将一些字符串推入容器
std::string userInput;
std::cin >> userInput; // User will enter some string
word.push_back(userInput); // Push that input into the vector
答案 1 :(得分:0)
C和C ++是不同的语言。你不能编写C程序并在那里使用一些C ++。
C中没有std::vector
。如果要使用std::vector
,则必须使用C ++编写。如果您想用C语言书写,则不能使用std::vector
。
不要使用C ++编译器来编译C程序。这只会增加你的困惑。