同一个程序,vc6可以运行,但Devc就崩了

#include <iostream>
#include <fstream>
#include <vector>
#include <sstream>
/* run this program using the console pauser or add your own getch, system("pause") or input loop */
using namespace std;
void mysort(vector<string> &vs0);
void myswap(string &vs1,string &vs2);
int main(int argc, char** argv) {
vector<string> vs;
ifstream fin("abc.txt");
string s;
while(getline(fin,s))
vs.push_back(s);
mysort(vs);
for(int i=0;i<vs.size();i )
cout<<vs[i]<<endl;
return 0;
}
void mysort(vector<string> &vs0)
{
for(int i=vs0.size()-1;i>0;i--)
for(int j=0;j<=i;j )
if(vs0[j].size()>vs0[j 1].size())
myswap(vs0[j],vs0[j 1]);
}
void myswap(string &vs1,string &vs2)
{
string a;
a=vs1;
vs1=vs2;
vs2=a;
}
//那个abc.txt就是一组长短不一的01串,正常。
#C++工程师#
全部评论
贴代码
点赞 回复 分享
发布于 2018-03-31 13:28
for(int j=0;j<=i;j ) if(vs0[j].size()>vs0[j+1].size())的j越界了
点赞 回复 分享
发布于 2018-04-02 07:08
老哥,啥年代了,还用VC6...
点赞 回复 分享
发布于 2018-03-31 12:52
现在的程序员问问都不贴错误日志的吗
点赞 回复 分享
发布于 2018-03-31 17:06
大概是代码里变量没初始化好
点赞 回复 分享
发布于 2018-03-31 17:13

相关推荐

评论
点赞
收藏
分享
牛客网
牛客企业服务