已知一个不带头结点单链表的头指针为L,则在表头元素之前插入一个新结点*s的语句为:()
A: L=s; s->next=L;
B: s->next=L; L=s;
C: s=L; s->next=L;
D: s->next=L; s=L;
出自:计算机科学