int isSorted(struct Node *p){ x= INT_MIN; while(p!=NULL){ if(p->data<x) return false; x=p->data; p=p->next; } return true; }