void CErase(struct node *H, struct node *A) { struct node *p; if (H!=NULL) { p = H->Link; H->Link = A; A = p; } }
用来把原来的H→Link保存到A吧