字符串二维数组排序(知识点)

struct node
{
    char data[100];
} s[100010];

bool cmp(const node &x, const node &y)
{
    if(strcmp(x.data, y.data) < 0)
        return  true;
    return false;
}

sort(s, s+n, cmp);

 

posted @ 2013-10-22 20:01  GLSilence  阅读(330)  评论(0编辑  收藏  举报