【2 线性表】判断链表是否递增。

bool judge_ascend(Linklist L){
	if(!L||!L->next)
		return true;
	LNode *pre=L,*p=L->next;
	while(p&&pre->datadata){
		pre=p;
		p=p->next;
	}
	if(p==null)
		return true;
	else
		return false;
} 

你可能感兴趣的:(2,线性表,链表,java,前端)