I / O嵌套时出现问题

时间:2018-01-23 21:02:19

标签: c++ string segmentation-fault nested-loops fault

团队!我有一个任务,我必须从一行读取控制台中的字符串,从新行我必须读取一行整数。整数表示字符串循环旋转的级别。 (abcd,1 - > bcda)我的ploblem在阅读时是主要的方法。这是:

int main(){
int k;
string s;
while(cin >> m){

        while(cin >> k){
        string temp = m;
        shift(k);
        cout << m << endl;
        m = temp;

    } }

我需要阅读多个示例,但此代码只读取m(字符串)一次,k(级别)由无穷大读取。如何在k-s的新行数组上再读取m,然后再读取m?

以下是整个计划:

    #include <iostream>
#include <vector>
#include <sstream>

using namespace std;

string m;


void reverse_arr(int a, int b)
{ unsigned i, j, k, c;
  char tmp;
  for (c=(b-a)/2, k=a, j=b, i=0; i<c; i++, j--, k++)
  { tmp = m[k];
    m[k] = m[j];
    m[j] = tmp;
  }
}

void shift(unsigned k)
{
    int N = m.length();
    reverse_arr(0, k-1);
    reverse_arr(k, N - 1);
    reverse_arr(0, N - 1);

}

int main()
{
    int k;
    string s;
    while(getline(cin,m)){
        string int_line;
        if(getline(cin,int_line)){
            istringstream is(int_line);
            while(is >> k){
            string temp = m;
            shift(k);
            cout << m << endl;
            m = temp;
        }

 }

    }
    return 0;
}

P.S。什么是分段故障???这个程序可以导致它吗?

1 个答案:

答案 0 :(得分:0)

要读取行,请使用getline。但是getline只读取一个字符串,所以将你的整数行读入一个字符串,然后使用istreamstream从字符串中读取整数。像这样的东西

while (getline(cin, m))
{
    string int_line;
    if (getline(cin, int_line))
    {
        istringstream int_input(int_line);
        while (int_input >> k)
        {
             ...
        }
    }
}

这可能不是你所需要的,我并不完全明白你想要做什么。但关键点是使用正确的工具来完成工作。你想读取行,所以使用getline,你想从第二行读取数字,所以在读完行后使用istringstream读取数字。