首页    新闻    小组    威客    人才    下载    博客    代码贴    在线编程    论坛
代码贴张中印的代码贴全部
void Sort(CList &stulist)
{
 CNode *p1,*p2,*p3,*big;
 for(p1=stulist.get_listhead();p1!=NULL;p1=p1->pnext)
 {
big=p1;
p2=p1->pnext;
while(p2)
{
     if(big->pdata->get_score()<p2->pdata->get_score())
      big=p2;
 p2=p2->pnext;
......................
阅读全部 | 2013年12月21日 09:34
1
张中印