int judge(LinkList L)
{
LNode *p=L->next,*q;
while(p)
{
while(p->next!=NULL)
{
q=p->next;
if(q->data>p->data)
p=q;
else
return 0;
}
}
return 1;
}
判断带头结点单链表是否递增
最新推荐文章于 2022-04-02 16:55:35 发布
int judge(LinkList L)
{
LNode *p=L->next,*q;
while(p)
{
while(p->next!=NULL)
{
q=p->next;
if(q->data>p->data)
p=q;
else
return 0;
}
}
return 1;
}