*hear之前插入节点*s的操作是()
A:s->next=head;head=s;
B:s->next=head->next;head->next=s;
C:head=s;s->next=head;
D:head->next=s;s->next=head->next;
出自:计算机科学