注册 登录
编程论坛 VC++/MFC

求助关于C++简单代码!!!!!!!!

我的梦 发布于 2011-05-25 19:12, 628 次点击
void Insert(Student* first1,Student* stud)//插入函数
{
    if(first1==NULL)//判断链首指针是否为空
    {
        first1=stud;
        stud->next=NULL;
        return;
    }
    if(first1->num1>stud->num1)//插入到链首
    {
        stud->next=first1;
        first1=stud;
        return;
    }

    Student* pGuard=first1;

    while(pGuard->next&&pGuard->next->num1<stud->num1)//插入到中间
    {
        pGuard=pGuard->next;
        stud->next=pGuard->next;
        pGuard->next=stud;
    }
    return;
}

请帮忙解决一下,每次在主程序中插入的数据都输出不了,谢谢
2 回复
#2
若水随缘2011-06-14 11:29
程序实现的功能是什么?把输出那部分的代码也发出来吧!
#3
我的梦2011-06-16 20:42
额,这个我已经解决了,谢谢了!
1