数据结构单链表结点插入问题!p.next是什么意思?在线等待!
8.在单链表指针为p的结点之后插入指针为s的结点,正确的操作是:()
A.p.next=s;s.next=p.next;B.s.next=p.next;p.next=s;
C.p.next=s;p.next=s.next;D.p.next=s.next;p.next=s;