A.p->next==NULL;
B.p==NULL;
C.p->next==head;
D.p==head;
第1题:
非空的单循环链表由头指针 head 指示,则其尾结点(由指针 p 所指)满足()。
第2题:
4、非空的循环单链表head的尾结点(假设由指针p所指向)应满足 。
A.p->next == NULL
B.p == NULL
C.p->next ==head
D.p == head
第3题:
非空的循环单链表head的尾结点指针p满足()
A.p->next = head
B.p->next = nil
C.p = nil
D.p = head
第4题:
非空的单循环链表由头指针head指示,则其尾结点(由指针p所指)满足 。
第5题:
5、以head为头指针的非空单向循环链表的尾结点(由p所指向)满足_____。
A.p—>next==NULL
B.p==NULL
C.p—>next==head
D.p==head