我得到一个由n个整数组成的输入字符串,用逗号分隔(例如"23,4,56")。我需要设置一个字符串流来表示这个字符串,然后用它将每个整数扫描成一个向量。向量的元素(列表中的整数)最终将逐行输出。我得到了main(),只负责编写parseInts(字符串str)。出于某种原因,我一直被暂停。我猜这是我while循环中的一些内容,特别是关于我如何使用str()操作我的sstream,但我不知道到底发生了什么。我是sstream和C++的新手,如果有任何帮助,我将不胜感激!
#include <sstream>
#include <vector>
#include <iostream>
using namespace std;
vector<int> parseInts(string str) {
int a; //will use this to hold the value of the 1st int in the sstream
stringstream list_initial; //will iterate over this sstream
list_initial.str(str); //set sstream to represent input str
vector<int> list_final; //will return this final vector for output in main
while (!list_initial.str().empty()){ //stop iterating at end of string
list_initial>>a; //store leading int value in a
list_final.push_back(a); //add a to end of vector
while (!ispunct(list_initial.str()[0])){ //get to next int in list
list_initial.str(list_initial.str().erase(0,1));
};
list_initial.str(list_initial.str().erase(0,1)); //erase leading comma
};
return list_final;
};
int main() {
string str;
cin >> str;
vector<int> integers = parseInts(str);
for(int i = 0; i < integers.size(); i++) {
cout << integers[i] << "n";
}
return 0;
}
您的功能实现确实可以得到改进,但根据您的逻辑,如果您替换第二行while
:
while (!ispunct(list_initial.str()[0])){ //get to next int in list
通过这个,添加一个长度检查:
while (list_initial.str().size() && !ispunct(list_initial.str()[0])){ //get to next int in list
,然后是运行,运行良好,退出良好。
解释
这个循环从未中断,因为在过程结束时,ispunct()
函数从未将其参数!list_initial.str()[0]
识别为true:字符串list_initial.str()
此时为空,则0
索引不存在
请查看cplusplus.com上的文档:
如果pos等于字符串长度,则const版本从不抛出异常(没有抛出保证)
否则,会导致未定义的行为。
你的程序被冻结了,因为它没有找到正确的条件,这可能导致离开上面的循环。
建议
关于你的问题,一件重要的事情是:为什么你自己没有找到答案这个问题的答案如下:您没有尝试调试代码。
为了回答你的问题,我刚刚调试了你的代码,通过在你的代码周围添加这样的行,很快就发现了问题,看看发生了什么:
cout << "list_initial: " << list_initial.str() << endl;
您的代码示例,添加了调试语句::
#include <sstream>
#include <vector>
#include <iostream>
using namespace std;
vector<int> parseInts(string str) {
cout << "begin parseInts()" << endl; // ###### DEBUG ######
int a; //will use this to hold the value of the 1st int in the sstream
stringstream list_initial; //will iterate over this sstream
list_initial.str(str); //set sstream to represent input str
vector<int> list_final; //will return this final vector for output in main
cout << "begin while 1" << endl; // ###### DEBUG ######
while (!list_initial.str().empty()){ //stop iterating at end of string
list_initial >> a; //store leading int value in a
list_final.push_back(a); //add a to end of vector
cout << "a: " << a << endl; // ###### DEBUG ######
cout << "begin while 2" << endl; // ###### DEBUG ######
while (!ispunct(list_initial.str()[0])){ //get to next int in list
cout << "list_initial: " << list_initial.str() << endl; // ###### DEBUG ######
list_initial.str(list_initial.str().erase(0,1));
};
cout << "endwhile 2" << endl; // ###### DEBUG ######
list_initial.str(list_initial.str().erase(0,1)); //erase leading comma
};
cout << "endwhile 1" << endl; // ###### DEBUG ######
cout << "end parseInts()" << endl; // ###### DEBUG ######
return list_final;
};
int main() {
string str;
cin >> str;
vector<int> integers = parseInts(str);
cout << "begin for" << endl; // ###### DEBUG ######
for(int i = 0; i < integers.size(); i++) {
cout << integers[i] << "n";
}
cout << "end for" << endl; // ###### DEBUG ######
return 0;
}
这种(非常基本的)调试技术允许您快速发现代码中的错误;只需在代码中添加一些cout << ... << endl;
行,就可以指出一些重要信息,例如:"哪个循环导致冻结?"或"此时此变量的内容是什么?"。
如果将cout << "Entering While loop 1" << endl;
放在每个可疑循环之前,将cout << "Exiting While loop 1" << endl;
放在每个怀疑的循环之后,您可能会了解到许多关于程序执行过程中发生的事情。
通过添加这些调试行,您可以很容易地发现第二个循环将永远循环;然后您可以将您的bug调查范围缩小到这个循环。
流是一个抽象文件。它只是一堆文本,可以被cin >> n
之类的东西理解,将数字转换为整数。
以下是如何使用流的想法:
#include <cctype>
#include <ciso646>
#include <iostream>
#include <sstream>
#include <vector>
using namespace std;
vector<int> parse_ints( const string& s )
{
vector<int> ints; // resulting list of ints
istringstream ss(s); // stream of ints separated by (non-digits)
int n; // each int extracted from the stream
// while input an int
while (ss >> n)
{
// save the int
ints.push_back(n);
// skip to next digit
while (ss and !isdigit(ss.peek())) ss.get();
}
return ints;
}
int main()
{
vector<int> xs = parse_ints( "2, 3 ,5; 7 : 11.13t17abc21" );
for (int x : xs)
cout << x << " ";
cout << "n";
}
这产生:
2 3 5 7 11 13 17 21
注意到我们可以简单地跳过不感兴趣的字符吗?在这种特殊情况下,我们跳过所有非数字字符。
希望这能有所帮助。