在bool if语句处退出代码-1073741510

时间:2018-01-18 21:00:56

标签: c++ arrays vector exit-code

我正在编写一个程序,提示用户输入.txt文件,然后将ifstream对象和一个int数组传递给函数 - count_letters(ifstream&,int * arrayInts)。

然后,该函数从ifstream对象中读取每个字符,并存储来自a-z的字符频率(不区分大小写)。每个字符都传递给bool函数,该函数检查它是否是非字母字符。为了便于阅读,我评论了alphabetVect和checkVect向量,因为它们很长。

此时我的程序退出执行。即使我可以看到返回为“真”,也永远不会执行for循环。函数结束前的循环打印出arrayInt的内容也不会执行。

void count_letters(std::ifstream &fileIn, int *arrayInt)
{
    char c;                 // character variable to read from  fileIn
    bool cACReturn;         // charArrayCheck return value
    int aICount = 0;        // count for arrayInt in for loop
    std::vector<char> alphabetVect {// characters 'a' - 'z'};
    while (fileIn.get(ch))
    {
        tempCh = ch;
        cACReturn = charArrayCheck(ch);
        std::cout << "cACReturn = " << cACReturn << std::endl;

        while (1)
        {
            // If ch is an alphabetical character
            if (cACReturn == true)
            {
                for (size_t i = 0; i < alphabetVect.size(); (i + 2))
                {
                    if (ch == alphabetVect[i] || ch == alphabetVect[i + 1])
                    {
                        std::cout << "success" << std::endl;
                        arrayInt[aICount]++;
                    }
                    aICount++;
                }
            }
            else
            {
                std::cout << "false" << std::endl;
            }
        }
    }

    for (int i = 0; i < 26; i++)
    {
        std::cout << "In count_letter letterArray[" << i << "] = " << arrayInt[i] << std::endl;
    }
}

这是charArrayCheck函数:

bool charArrayCheck(char charIn)
{
    std::vector<char> checkVect {// non alphabet characters};

    for (size_t i = 0; i < checkVect.size(); i++)
    {

        if (charIn == checkVect[i])
        {
            std::cout << "false in charArrayCheck" << std::endl;

            return false;
        }

        else
        {
            if (i == (checkVect.size() -1))
            {
                return true;
            }

            else
            {
                continue;
            }
        }
    }
}

感谢您的帮助。

1 个答案:

答案 0 :(得分:1)

问题可能就在这一行:

            for (size_t i = 0; i < alphabetVect.size(); (i + 2))

因为它永远不会重新分配i,所以这是一个无限循环。 aICount保持递增,最终arrayInt[aICount]++访问数组边界之外。这会导致未定义的行为,并且由于导致的所有内存损坏,程序崩溃。

应该是:

            for (size_t i = 0; i < alphabetVect.size(); i += 2)