gpt4 book ai didi

c++ - 数组有问题

转载 作者:行者123 更新时间:2023-11-28 00:31:03 26 4
gpt4 key购买 nike

我 100% 确定我的代码错误地确定了数组的大小当我将 hello 作为输入并设置 strArray[5] 时,它可以正常工作。但问题是我不知道输入的大小有多大,所以我只输入 80(因为这是可能的最大值)

这是我的代码。

#include <iostream>
#include <string>
#include <algorithm>
#include <vector>
using namespace std;

main()
{
string str1;
char strArray[80];


cout << "Enter string: ";
getline(cin, str1);

transform(str1.begin(), str1.end(), str1.begin(), ::tolower);
str1.erase(remove(str1.begin(),str1.end(),' '),str1.end());

for(int i = 0;i < str1.length(); i++)
{
if(str1[i] == ',' || str1[i] == '.')
{
str1.erase(i,1);
}
}

for(int i=0;i<str1.length();i++)
{
strArray[i] = str1[i];
}

char tempChar;

for(int i = 0; i < (sizeof(strArray)/sizeof(*strArray))-1; i++)
{
for(int j = 0; j < (sizeof(strArray)/sizeof(*strArray)-1); j++)
{
if(strArray[j+1] < strArray[j])
{
tempChar = strArray[j];
strArray[j] = strArray[j+1];
strArray[j+1] = tempChar;
}
}
}

cout << strArray << endl;
return 0;
}

最佳答案

您可以将 strArray 设为字符串。或者,如果必须使用 char 数组,则应使用 char *strArray = new char[str1.length()] 动态分配 char 数组。在这种情况下,不要忘记 delete [] strArray; 完成后。

关于c++ - 数组有问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22921218/

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