下面的叙述中正确的是: Select the answer that matches ( There are more than one correct answers )
A.
线性表在顺序存储时,查找第 i 个元素的时间与 i 的数值成正比。 When the linear list stored sequentially, the time to find the i-th element is proportional to value with i.
B.
线性表在顺序存储时,查找第 i 个元素的时间与 i 的数值无关。 When the linear list stored sequentially, the time to find the i-th element is regardless of the value of i.
C.
线性表在链式存储时,插入第 i 个元素的时间与 i 的数值成正比。 When linear lists stored in the linked form, the time to insert the i-th element is proportional to value with i.
D.
线性表在链式存储时,查找第 i 个元素的时间与 i 的数值无关。 When the linear list stored in linked form, the time to find the i-th element is regardless of the value of i.