我必须编写一个程序,该程序接受字符串输入并输出不带特殊字符的已排序字符串,但是即使循环仅运行到字符串末尾,它也会超出范围而抛出索引
#include <iostream>
#include <string.h>
using namespace std;
int main(){
string mes="";
string tem;
cin>>tem;
for (int i=0;i<tem.length();i++){
char ch=tem.at(i);
if((ch<=65&&ch<=90)||(ch>=97&&ch<=122))
mes+=ch;
else
continue;
}
cout<<mes;
for(int i=0;i<tem.length();i++){
int small=(int)mes.at(i);
int spos=i;
for(int j=i;j<tem.length();j++){
int a=(int)mes.at(j);
if(a<small){
small=a;
spos=j;
}
}
char temp=' ';
temp=mes.at(i);
mes.at(i)=mes.at(spos);
mes.at(spos)=temp;
}
cout<<mes;
}
这是错误消息:
终止'std :: out_of_range'what():basic_string :: at:__n(3)> = this-> size()(3)
最佳答案
for(int i=0;i<tem.length();i++){
int small=(int)mes.at(i);
您遍历
tem
的索引,但读取大小不同的mes
。关于c++ - 程序终止于索引超出范围,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/50059246/