Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I need to get all permutations of a string and return them to a vector.

But, I got error:

 terminate called after throwing an instance of 'std::out_of_range'
  what():  basic_string::erase
Aborted

In gdb:

File "/usr/share/gdb/python/libstdcxx/v6/printers.py", line 469, in to_string
    return self.val['_M_dataplus']['_M_p'].string (encoding, length = len)
RuntimeError: Error reading string from inferior: Input/output error
) at permStr.cpp:20
20                      ss.erase(i, 1) ;

--------------- my code ----------------

  vector<string> perm(string s)
 {
    vector<string> v;
    if (s.empty())
            return v;
    string ss(s);

    vector<string> v1;
    int size  = ss.size();
    for (int i = 0; i < size ; ++i)
    {
            ss.erase(i, 1) ;
            v = perm( ss ) ;
            vector<string>::iterator itr;
            for (itr = v.begin(); itr != v.end(); ++itr)
            {
                    v1.push_back(s[i]+ *itr);

            }
    }
    return v1;

  }


int main()
{
    string a("abc");
    vector<string> d;
    vector<string>::iterator itr;
    d = perm(a);
    for (itr = d.begin() ; itr != d.end(); ++itr)
    {
            cout << *itr << endl ;
    }
    return 0;
}

Any help will be appreciated.

share|improve this question
4  
You've attached a debugger, which is a good start, but now you need to debug the program. Stack Overflow is not a debugging service. What is the state of the program when it fails? Try to figure out why the erasure fails. – James McNellis Apr 29 '12 at 16:56
3  
Hint: You just changed the length of your string. – Brian Roach Apr 29 '12 at 16:56

closed as too localized by James McNellis, Brian Roach, Dalmas, Mat, bmargulies Apr 30 '12 at 1:19

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

An out-of-range error usually signifies that something is out of range. Not obvious at all, right? In seriousness, it means that you're trying to access data at an index greater than that of your string.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.