c++使用sort函数排序时出现写入位置异常
在使用c++语言进行编程的时候,使用到了sort函数对结构体进行排序,编译过程中未报错,运行结果提示
在网上查了好久也没有查到解决办法,最后的解决办法是将代码中结构体定义的string类型改成了char型数组 代码如下:
#include <iostream>
#include<string>
#include<stdio.h>
#include<algorithm>
using namespace std;
struct people
{
string name;
int heigh;
};
bool cmp(people a,people b)
{
if (a.heigh!=b.heigh)
return a.heigh<b.heigh;
else return a.name<b.name;
}
int main()
{
int N,K;
people p[10010];
scanf("%d%d",&N,&K);
for (int i=0;i<N;i++)
{
getchar();
scanf("%s",&p[i].name);
scanf("%d",&p[i].heigh);
}
sort(p,p+N,cmp);
for (int i=0;i<N;i++)
{
printf("%s",p[i].name);
printf("%d",p[i].heigh);
}
return 0;
}
结果可以成功运行。
第一次写csdn,主要是为了记录一下自己编程中的问题,也为了给方便遇到同样问题的朋友们提供解决方法,写的不好多多见谅。