|
|
#2
寒风中的细雨2011-04-18 09:26
|
Bool Judge(node *L)
{ node *p=L->next;
if(P==NULL) <-这个怎么读了?为什么给P附值为空?
return true; while(p->next!=NULL)
if(p->data<p->next->data)
p=p->next;
else return FALSE;
return true;
}
[ 本帖最后由 wanghaomin 于 2011-4-18 00:23 编辑 ]