A、head= =NULL
B、head->
next= =NULL
C、head->
next= =head
D、head!=NULL
A、不再需要头指针
B、已知某结点位置后能容易找到其直接前驱
C、在进行插入、删除运算时能保证链表不断开
D、在表中任一结点出发都能扫描整个链表
A、必须是连续的
B、部分地址必须是连续的
C、一定是不连续的
D、连续或不连续都可以
A、顺序表
B、单链表
C、双链表
D、循环单链表
A、n-i
B、n-i+1
C、n-i-1
D、i
A、随机存取
B、顺序存取
C、索引存取
D、散列存取
A、p->
next=q
q->
prior=p
p->
next->
prior=q
q->
next=q
B、p->
next=q
p->
next->
prior=q
q->
prior=p
q->
next=p->
next
C、q->
prior=p
q->
next=p->
next
p->
next->
prior=
A、访问第i个元素的前驱
B、在第i个元素之后插入一个新元素
C、删除第i个元素
D、对顺序表中元素进行排序
A、s->
next=p;q->
next=s->
next;
B、p->
next=s->
next;s->
next=q;
C、s->
next=q;p->
next=s->
next;
D、q->
next=s->
next;s->
next=p;
A、(n-1)/2
B、(n+1)/2
C、n/2
D、n