📅  最后修改于: 2022-03-11 15:04:33.930000             🧑  作者: Mango
void Append(Node *head, Node node){
Node tmp = *head;
if(*head == NULL) {
*head = node;
return;
}
while(tmp->next != NULL){
tmp = tmp->next;
}
tmp->next = node;
return;
}