新微赢技术网
标题:
函数递归
[打印本页]
作者:
轌婲の滿天飛
时间:
2009-11-3 23:54
标题:
函数递归
int Information::count(struct student *head)//定义函数count()统计考生总数
{
if(head==NULL)return(0);//若指针head为空返回值为0
else return(1+count(head->next));//函数的递归调用
}
这个函数到底是如何递归的啊 我的理解是 当head=NULL时 不就只返回0了吗 怎么达到累加效果呢
欢迎光临 新微赢技术网 (http://bbs.weiying.cn/)
Powered by Discuz! X3.2