structnode{ intdata; structnode*next; }; typedefstructnodeNode; voidDelete(Node*s) { Node*p,*q; p=s; while(p->next!=s){ p=p->next; } q=p->next; p->next=q->next; }
structnode{ intdata; structnode*next; }; typedefstructnodeNode; voidDelete(Node*s) { Node*p,*q; p=s; while(p->next!=s){ p=p->next; } q=p->next; p->next=q->next; }