itgle.com
更多“下列哪些是线性表的常用操作() ”相关问题
  • 第1题:

    下面关于线性表的叙述中,正确的是哪些? Which of the followings about linear list are correct?(There are more than one answers.) Select the answer that matches

    A.线性表采用顺序存储,必须占用一片连续的存储单元。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


    线性表采用顺序存储,必须占用一片连续的存储单元。Linear lists use sequential storage which must occupy a continuous memory units.;线性表采用链接存储,不必占用一片连续的存储单元。Linear lists using the linked storage, do not occupy a continuous memory units.;线性表采用链接存储,便于插入和删除操作。Linear lists using the linked storage, it is easy for insert and deleting operations.

  • 第2题:

    下列叙述中错误的是________。

    A.线性表采用顺序存储,便于插入和删除操作

    B.线性表采用顺序存储,必须占用一片连续的存储单元

    C.线性表采用链式存储,不必占用一片连续的存储单元

    D.线性表采用链式存储,便于插入和删除操作


    线性表采用顺序存储,便于进行插入和删除操作。

  • 第3题:

    设线性表为(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个元素删除。


    在顺序存储结构中,元素之间的关系通过元素的位置来表达。;链式存储需要增加指针,用以表达元素之间的先后关系。;同一操作,不同的存储结构,算法的时间复杂性可能不同。

  • 第4题:

    串是特殊的线性表,其基本操作和线性表的基本操作所面向的操作对象不同。()


    正确

  • 第5题:

    1、下面关于线性表的叙述中,正确的是哪些? Which of the followings about linear list are correct?(There are more than one answers.) Select the answer that matches

    A.线性表采用顺序存储,必须占用一片连续的存储单元。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


    线性表采用链接存储,不必占用一片连续的存储单元。;线性表采用顺序存储,必须占用一片连续的存储单元。;线性表采用链接存储,便于插入和删除操作。