下列哪些是线性表的常用操作() A、插入B、删除C、查找D、判断是否为空
下列哪些是线性表的常用操作()
A、插入
B、删除
C、查找
D、判断是否为空
相关考题:
下列关于线性表的叙述中,错误的是( )。A.线性表采用顺序存储,必须占用一片连续的存储单元B.线性表采用顺序存储,便于进行插入和删除操作C.线性表采用链式存储,不必占用一片连续的存储单元D.线性表采用链式存储,便于进行插入和删除操作
下面关于线性表的叙述中,正确的是哪些? Which of the followings about linear list are correct?(There are more than one answers.) Select the answer that matchesA.线性表采用顺序存储,必须占用一片连续的存储单元。Linear lists use sequential storage which must occupy a continuous memory units.B.线性表采用顺序存储,便于进行插入和删除操作。Linear lists using sequential storage, it is easy to do insert and delete operations.C.线性表采用链接存储,不必占用一片连续的存储单元。Linear lists using the linked storage, do not occupy a continuous memory units.D.线性表采用链接存储,便于插入和删除操作。Linear lists using the linked storage, it is easy for insert and deleting operati
下列叙述中错误的是________。A.线性表采用顺序存储,便于插入和删除操作B.线性表采用顺序存储,必须占用一片连续的存储单元C.线性表采用链式存储,不必占用一片连续的存储单元D.线性表采用链式存储,便于插入和删除操作
1、下面关于线性表的叙述中,正确的是哪些? Which of the followings about linear list are correct?(There are more than one answers.) Select the answer that matchesA.线性表采用顺序存储,必须占用一片连续的存储单元。Linear lists use sequential storage which must occupy a continuous memory units.B.线性表采用顺序存储,便于进行插入和删除操作。Linear lists using sequential storage, it is easy to do insert and delete operations.C.线性表采用链接存储,不必占用一片连续的存储单元。Linear lists using the linked storage, do not occupy a continuous memory units.D.线性表采用链接存储,便于插入和删除操作。Linear lists using the linked storage, it is easy for insert and deleting operati
设线性表为(a1,a2,…,an),采用顺序存储结构,则下列操作中时间复杂度为O(1)的是()。A.Get(L,i),取元素操作,返回线性表L中的第i个元素。B.Locate(L,x):定位操作,给定值x,判断线性表中是否有和x相同的元素。C.Insert(L,i,e):插入操作,在线性表L的第i个元素的前面插入一个元素e。D.Delete(L,i):删除操作,将线性表L的第i个元素删除。