15. Suppose p is a pointer of node points to the rear of a circular linked list. Initially, p = null.The following program codes will insert a node pointed by pointer q at the front of the circuler list. Please fill in the blanks. 5ccbe17a42fdf.jpg
(A) code1: p , code2: q
(B) code1: p , code2: q->link
(C) code1: p->link , code2: q
(D) code1: p->link , code2: q->link

答案:登入後查看
統計: A(15), B(20), C(36), D(7), E(0) #1989182

詳解 (共 1 筆)

#3885782
p->link  表示指到下一項 插入...
(共 49 字,隱藏中)
前往觀看
1
0