摘要: #include #include #include #include using namespace std;typedef struct Channel{ int s,t;}channel;int cmp(const void *a, const void *b){ channel *c = (channel *) a; channel *d = (channel *) b; if(c->t != d->t) return c->t - d->t; else return c->s - d->s;}//qsort/*int cmp(const chann 阅读全文
posted @ 2013-10-20 15:57 i梦 阅读(172) 评论(0) 推荐(0)