gpt4 book ai didi

c++ - 如何使用stoi()将字符串转换为整数?

转载 作者:行者123 更新时间:2023-12-03 06:58:30 26 4
gpt4 key购买 nike

If there are more than 3 letters together (i.e. next to each other) from the given Alphabet Set: {a,g,w,k,l}, then your string is “BAD”. If a number is repeated more than three times, then your string is “BAD”. Print "1” if string is GOOD, else print "0".


对于第一个条件,我能够做到。但是对于第二个条件,我在将字符串转换为int时遇到问题。我尝试使用 stoi(),但我认为我没有正确使用它。
#include<bits/stdc++.h>

using namespace std;

int main() {

int t;
cin >> t;
while (t--> 0) {
string s;
cin >> s;
int ccount = 0;

int arr[10] = {0,0,0,0,0,0,0,0,0,0};
bool b = true;
for (int i = 0; i < s.size(); i++) {
if (s[i] == 'a' || s[i] == 'g' || s[i] == 'w' || s[i] == 'k' || s[i] == 'l') {
ccount++;
if (ccount >= 3) {
b = false;
break;
}
} else if (isdigit(s[i])) {
ccount = 0;
int num = stoi( & s, sizeof(s) * i, 10);
arr[num]++;
int k = 0;
for (k = 0; k < 10; k++) {
if (arr[k] >= 3) {
b = false;
break;
}
}
} else {
ccount = 0;
}

}
if (b == true) {
cout << 1 << endl;
} else {
cout << 0 << endl;
}

}
return 0;
}
输入:
3
qw2uha
awkl5
y2y2y2y2
输出:
1
0
0
编辑:ASCII转换效果很好。
我有一个不太重要的问题,我知道我们不能直接比较具有不同符号的整数,但是我仍然很好奇。
#include<bits/stdc++.h>
using namespace std;

int main() {

int t;
cin >> t;
while (t--> 0) {
string s;
cin >> s;
int ccount = 0;
int arr[10] = {0,0,0,0,0,0,0,0,0,0};
bool b = true;
for (int i = 0; i < s.size(); i++) {
if (s[i] == 'a' || s[i] == 'g' || s[i] == 'w' || s[i] == 'k' || s[i] == 'l') {
ccount++;
if (ccount >= 3) {
b = false;
break;
}
} else if (isdigit(s[i])) {
ccount = 0;
int num = s[i] - '0';
arr[num]++;
int k = 0;
for (k = 0; k < 10; k++) {
if (arr[k] > 3) {
b = false;
break;
}
}
} else {
ccount = 0;
}
}
if (b == true) {
cout << 1 << endl;
} else {
cout << 0 << endl;
}
}
return 0;
}
我收到此警告:
14:23: warning: comparison of integer expressions of different signedness: 'int' and 'std::__cxx11::basic_string<char>::size_type' {aka 'unsigned int'} [-Wsign-compare]
14 | for (int i = 0; i < s.size(); i++) {
| ~~^~~~~~~~~~
]
有什么办法可以解决警告?

最佳答案

您可以像这样转换表示一个数字的单个ASCII字符:

int num = s[i] - '0';
之所以可行,是因为在字符串内,每个字符都由ASCII码表示-下表中列出了它们。字符 '0'具有ASCII码48个十进制,并且其他数字从此处递增。当您执行 s[i] - '0'并说 s[i]'5'时,它将计算53-48 = 5。
`
enter image description here

std::stoi() 仅在您的 string以(可选的空格)开头然后是数字的情况下才有用。 "1x"( stoi将提取数字1), " 123"(123)或 "44kx2"(44)。由于您的 s字符串之前或之后可能包含字符,因此您可以使用 s.substr(i, 1) 将单个数字提取为 string,然后在其中使用 std::stoi(),但是上述ASCII转换更快/更简单/更直接。

关于c++ - 如何使用stoi()将字符串转换为整数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64823986/

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