A、mine aunt’s
B、mine aunt
C、my aunt's
D、my aunt
第1题:
template int SeqList::Insert(Type &x, int i) {
if (i<0 || i>last+1 || last== MaxSize-1) return 0;
else {
Last++;
for(int j=last;j
data[i]=x;
return 1;
}
}
对于结点类型为SeqList的顺序表,以上算法的功能为:()
第2题:
2、下面选择父元素的第1个子元素的是()
A.E:nth-last-child(1)
B.E:nth-child(1)
C.E:last-child
D.E:only-child
第3题:
下面选择父元素的第1个子元素的是()
A.E:nth-last-child(1)
B.E:nth-child(1)
C.E:last-child
D.E:only-child
第4题:
2、在顺序结构表示的线性表中,删除第i个元素(数组下标为i-1),需要把后面的所有元素都往前挪一位,相应的语句是: for (___________ ) PtrL->Data[j-1]=PtrL->Data[j]; 其中空缺部分的内容应该是
A.j = i; j< = PtrL->Last; j++
B.j =PtrL->Last; j>= i; j--
C.j = i-1; j< = PtrL->Last; j++
D.j =PtrL->Last; j>= i-1; j--
第5题:
在顺序结构表示的线性表中,删除第i个元素(数组下标为i-1),需要把后面的所有元素都往前挪一位,相应的语句是: for (___________ ) PtrL->Data[j-1]=PtrL->Data[j]; 其中空缺部分的内容应该是
A.j = i; j< = PtrL->Last; j++
B.j =PtrL->Last; j>= i; j--
C.j = i-1; j< = PtrL->Last; j++
D.j =PtrL->Last; j>= i-1; j--
第6题:
2、选择无序列表项中的最后一个元素应该使用的选择器是
A.ul:only-child
B.li:only-child
C.ul:last-child
D.li:last-child