qsort with array of structs?

回眸只為那壹抹淺笑 提交于 2019-12-25 11:50:52

问题


I am trying to use qsort on an array of structs but I get this error: expected primary-expression before '*' token

struct muchie {
    int x,y,c;
} a[100];

int cmp(const void* p, const void* q)
{
    muchie vp,vq;
    vp=*(muchie* p);
    vq=*(muchie* q);
    return vp.c-vq.c;
}

// ....

qsort(a,m,sizeof(muchie),cmp);

回答1:


The casting of the parameters is wrong - should be *(muchie*)p instead of *(muchie* p).

Use:

int cmp(const void* p, const void* q)
{
    muchie vp,vq;
    vp=*(muchie*) p;
    vq=*(muchie*) q;
    return vp.c-vq.c;
}


来源:https://stackoverflow.com/questions/34828650/qsort-with-array-of-structs

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!