int Max(NODE h){
int m;
if(h->next==NULL)
return h->data;
else{
m=Max(h->next);
if(m>h->data)
return m;
else
return h->data;
}
}
假设一个不带头节点的单链表h中所有结点数据域为整数,设计一个递归算法求其中的最大值
最新推荐文章于 2024-11-08 23:36:48 发布
int Max(NODE h){
int m;
if(h->next==NULL)
return h->data;
else{
m=Max(h->next);
if(m>h->data)
return m;
else
return h->data;
}
}