Node *Locate(Node L,int x){ Node *p; p = L.next; while(p != NULL) { if (p->data == x) { return p; //找到返回结点的地址 } p = p->next; } return NULL; //未找到}