A.隨機(jī)存取 B.順序存取 C.索引存取 D.散列存取
A.O(1) B.O(n) C.O(m) D.O(m+n)
A.p->next=p->next->next; B.p=p->next;p->next=p->next->next; C.p=p->next; D.p=p->next->next;