当前位置:   article > 正文

数据结构第1~2章练习答案(PTA)_pta答案题库答案

pta答案题库答案

单选题

2-1下面代码段的时间复杂度是(B

  1. x=0;
  2. for( i=1; i<n; i++ )
  3. for ( j=1; j<=n-i; j++ )
  4. x++;

A.O(n)                B.O(n²)                C.O(n³)                D.O(2ⁿ)

2-2下列函数的时间复杂度是(B

  1. int func ( int n )
  2. { int i = 0, sum = 0;
  3. while ( sum < n ) sum += ++i;
  4. return i;
  5. }

A.O(logn)           B.O(^{n^{\tfrac{1}{2}}})                C.O(n)                 D.O(nlogn) 

2-3顺序表是线性表的(B)

A.链式存储结构  B.顺序存储结构   C.索引存储结构   D.散列存储结构

2-4对于顺序表,以下说法错误的是(A

A.顺序表是用一维数组实现的线性表,数组的下标可以看成是元素的绝对地址​

B.顺序表的所有存储结点按相应数据元素间的逻辑关系决定的次序依次排列

C.顺序表的特点是:逻辑结构中相邻的结点在存储结构中仍相邻

D.顺序表的特点是:逻辑上相邻的元素,存储在物理位置也相邻的单元中

2-5以下说法错误的是 (C)

A.对于线性表来说,定位运算LocateElem在顺序表和单链表上的时间复杂度均为O(n)

B.插入、删除操作在顺序表上的实现,平均时间复杂度为O(n)

C.在链表上实现读表元运算的平均时间复杂度为O(1)

D.插入、删除操作在链表上的实现可在O(1)时间内完成

2-6若某线性表中最常用的操作是取第i个元素和找第i个元素的前趋元素,则采用(A)存储方式最节省时间(A

A.顺序表        B.单链表        C.双链表        D.单循环链表

2-7哪个选项不是线性表的链式存储结构(B

A.单链表        B.顺序表        C.循环链表     D.双向链表

2-8在N个结点的顺序表中,算法的时间复杂度为O(1)的操作是(A

A.访问第i个结点(1≤i≤N)和求第i个结点的直接前驱(2≤i≤N)

B.在第i个结点后插入一个新结点(1≤i≤N)

C.删除第i个结点(1≤i≤N)

D.将N个结点从小到大排序

2-9线性表L=(a1, a2 ,……,an )用一维数组表示,假定删除线性表中任一元素的概率相同(都为1/n),则删除一个元素平均需要移动元素的个数是(C)。

A.n/2                B.(n+1)/2        C.(n-1)/2        D.n

2-10顺序存储表示中数据元素之间的逻辑关系是由(C)表示的。

A.指针              B.逻辑顺序      C.存储位置    D.问题上下文

2-11对于顺序表的优缺点,以下说法错误的是(C)。

A.无需为表示结点间的逻辑关系而增加额外的存储空间

B.可以方便地随机存取表中的任一结点

C.插入和删除运算较方便

D.容易造成一部分空间长期闲置而得不到充分利用

2-12在单链表指针为p的结点之后插入指针为s的结点,正确的操作是(B

A.p->next=s;s->next=p->next

B.s->next=p->next;p->next=s

C.p->next=s;p->next=s->next

D.p->next=s->next;p->next=s

2-13对于一个头指针为head的带头结点的单链表,判定该表为空表的条件是(B

A.head==NULL

B.head→next==NULL

C.head→next==head

D.head!=NULL

2-14设一个链表最常用的操作是在末尾插入结点和删除尾结点,则选用(D)最节省时间。

A.单链表

B.单循环链表

C.带尾指针的单循环链表

D.带头结点的双循环链表

2-15链表不具有的特点是(B

A.插入、删除不需要移动元素

B.方便随机访问任一元素

C.不必事先估计存储空间

D.所需空间与线性长度成正比

2-16在单链表中,若p所指的结点不是最后结点,在p之后插入s所指结点,则执行(C

A.s->next=p; p->next=s;

B.s->next=p->next; p=s;

C.s->next=p->next; p->next=s;

D.p->next=s; s->next=p;

2-17带头结点的单链表h为空的判定条件是(B

A.h == NULL;

B.h->next == NULL;

C.h->next == h;

D.h != NULL;

2-18将两个结点数都为N且都从小到大有序的单向链表合并成一个从小到大有序的单向链表,那么可能的最少比较次数是(B

A.1        B.N        C.2N        D.NlogN

2-19对于一非空的循环单链表,hp分别指向链表的头、尾结点,则有(A

A.p->next == h

B.p->next == NULL

C.p == NULL

D.p == h

2-20在双向链表存储结构中,删除p所指的结点,相应语句为(C

A.p->prior=p->prior->prior; p->prior->next=p;

B.p->next->prior=p; p->next=p->next->next;

C.p->prior->next=p->next; p->next->prior=p->prior;

D.p->next=p->prior->prior; p->prior=p->next->next;

函数题

6-1 单链表按姓名插入删除

本题要求实现按姓名音序有序插入函数与按姓名删除函数。

函数接口定义:

  1. Status ListInsert(LinkList &L,ElemType e); //在单链表L中按姓名有序插入新联系人e
  2. Status ListDelete(LinkList &L,char name[]); //在单链表L中删除姓名为name的联系人信息

裁判测试程序样例:

  1. #include<string.h>
  2. #include<stdio.h>
  3. #include<stdlib.h>
  4. #define OK 1
  5. #define ERROR 0
  6. #define OVERFLOW -2
  7. typedef int Status;
  8. typedef struct Telephone{
  9. char name[10];
  10. char Tel[12];
  11. }ElemType;
  12. typedef struct LNode /* 定义链式存储结构 */
  13. {
  14. ElemType data;
  15. struct LNode *next;
  16. }LNode,*LinkList;
  17. Status ListInsert(LinkList &L,ElemType e);
  18. Status ListDelete(LinkList &L,char name[]);
  19. Status InitList(LinkList &L) {
  20. L=(LinkList)malloc(sizeof(LNode));
  21. L->next=NULL;
  22. return OK;
  23. }
  24. void Print_LinkList( LinkList H) /* 输出链表中每个数据元素值 */
  25. {
  26. LNode *p;
  27. p=H->next; //p指向首元结点
  28. if(p==NULL) printf("链表为空\n");
  29. while(p!=NULL)
  30. {
  31. printf("姓名:%s,电话:%s\n",p->data.name,p->data.Tel);
  32. p=p->next;
  33. }
  34. }/* Print_LinkList */
  35. int main()
  36. {
  37. LinkList L;
  38. ElemType e;
  39. char name[10];
  40. int n;
  41. InitList(L);
  42. scanf("%d",&n);
  43. for(int i=0;i<n;i++){
  44. scanf("%s",e.name);
  45. scanf("%s",e.Tel);
  46. ListInsert(L,e);
  47. }
  48. Print_LinkList(L); //输出单链表
  49. scanf("%s",name); //输入删除人姓名
  50. if(ListDelete(L,name)){
  51. printf("删除后:\n");
  52. Print_LinkList(L); //输出单链表
  53. }
  54. else{
  55. printf("查无此人!");
  56. }
  57. return 0;
  58. }
  59. /* 请在这里填写答案 */

参考答案:

  1. Status ListInsert(LinkList &L,ElemType e) //在单链表L中按姓名有序插入新联系人e
  2. {
  3. LNode *p;
  4. p=(LNode *)malloc(sizeof(LNode));
  5. p=L;
  6. while(p->next!=NULL&&strcmp(e.name,p->next->data.name)>0)
  7. {
  8. p=p->next;
  9. }
  10. LNode *s;
  11. s=(LNode *)malloc(sizeof(LNode));
  12. s->next=NULL;
  13. s->data=e;
  14. if(p==NULL) p=s;
  15. else
  16. {
  17. s->next=p->next;
  18. p->next=s;
  19. }
  20. return OK;
  21. }
  22. Status ListDelete(LinkList &L,char name[]) //在单链表L中删除姓名为name的联系人信息
  23. {
  24. LNode *p,*q;
  25. p=(LNode *)malloc(sizeof(LNode));;
  26. q=(LNode *)malloc(sizeof(LNode));;
  27. p=L;
  28. if(p->next==NULL) return ERROR;
  29. while(p->next!=NULL&&strcmp(name,p->next->data.name)!=0)
  30. {
  31. p=p->next;
  32. }
  33. if(p->next==NULL) return ERROR;
  34. q=p->next;
  35. p->next=p->next->next;
  36. free(q);
  37. return OK;
  38. }

 6-2 顺序表的插入操作

本题要求实现一个函数,在顺序表的第i个位置插入一个新的数据元素e,插入成功后顺序表的长度加1,函数返回值为1;插入失败函数返回值为0;

函数接口定义:

int ListInsert(SqList &L,int i,ElemType e);

其中SqList结构定义如下:

  1. typedef struct{
  2. ElemType *elem;
  3. int length;
  4. }SqList;

裁判测试程序样例:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #define MAXSIZE 5
  4. typedef int ElemType;
  5. typedef struct{
  6. ElemType *elem;
  7. int length;
  8. }SqList;
  9. void InitList(SqList &L);/*细节在此不表*/
  10. int ListInsert(SqList &L,int i,ElemType e);
  11. int main()
  12. {
  13. SqList L;
  14. InitList(L);
  15. ElemType e;
  16. int i;
  17. scanf("%d%d",&i,&e);
  18. int result=ListInsert(L,i,e);
  19. if(result==0){
  20. printf("Insertion Error.The value of i is unlawful or the storage space is full!");
  21. }else if(result==1){
  22. printf("Insertion Success.The elements of the SequenceList L are:");
  23. for(int j=0;j<L.length;j++){
  24. printf(" %d",L.elem[j]);
  25. }
  26. }
  27. return 0;
  28. }
  29. /* 请在这里填写答案 */

输入格式:

输入数据有1行,首先给出以-1结束的顺序表元素值(不超过100个,-1不属于顺序表元素),然后是插入位置和被插入元素值。所有数据之间用空格分隔。

输入样例:

2 6 4 -1 2 100

输出样例:

Insertion Success.The elements of the SequenceList L are: 2 100 6 4

参考答案:

  1. int ListInsert(SqList &L,int i,ElemType e)
  2. {
  3. if(i>L.length+1 or L.length>=100 or i<1) return 0;
  4. L.length++;
  5. int temp;
  6. int j=L.length;
  7. while(j>=i)
  8. {
  9. L.elem[j]=L.elem[j-1];
  10. j--;
  11. }
  12. L.elem[i-1]=e;
  13. return 1;
  14. }

 6-3 顺序表的删除操作

本题要求实现一个函数,要求将顺序表的第i个元素删掉,成功删除返回1,否则返回0;

函数接口定义:

int ListDelete(SqList &L,int i);

其中SqList结构定义如下:

  1. typedef struct{
  2. ElemType *elem;
  3. int length;
  4. }SqList;

裁判测试程序样例:

  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. #define MAXSIZE 5
  4. typedef int ElemType;
  5. typedef struct{
  6. ElemType *elem;
  7. int length;
  8. }SqList;
  9. void InitList(SqList &L);/*细节在此不表*/
  10. int ListDelete(SqList &L,int i);
  11. int main()
  12. {
  13. SqList L;
  14. InitList(L);
  15. int i;
  16. scanf("%d",&i);
  17. int result=ListDelete(L,i);
  18. if(result==0){
  19. printf("Delete Error.The value of i is illegal!");
  20. }else if(result==1){
  21. printf("Delete Success.The elements of the SequenceList L are:");
  22. for(int j=0;j<L.length;j++){
  23. printf(" %d",L.elem[j]);
  24. }
  25. }
  26. return 0;
  27. }
  28. /* 请在这里填写答案 */

输入格式:

输入数据有1行,首先给出以-1结束的顺序表元素值(不超过100个,-1不属于顺序表元素),然后是删除位置。所有数据之间用空格分隔。

输入样例:

2 6 4 -1 1

输出样例:

Delete Success.The elements of the SequenceList L are: 6 4

参考答案:

  1. int ListDelete(SqList &L,int i)
  2. {
  3. if(i>L.length or i<1) return 0;
  4. L.length--;
  5. i--;
  6. while(i<L.length)
  7. {
  8. L.elem[i]=L.elem[i+1];
  9. i++;
  10. }
  11. return 1;
  12. }

 6-4 单链表的查询插入删除

编写3个函数,分别实现单链表(带头结点)的查询、插入、删除。

函数接口定义:

  1. int Get_LinkList(LinkList H, ElemType key)//H为单链表的头指针,key为待查找的值;
  2. Status ListInsert(LinkList &H,int i,ElemType e)//H为单链表的头指针,i为插入位置,e为新插入的值;
  3. Status ListDelete(LinkList &H,int i)//H为单链表的头指针,i为删除位置

裁判测试程序样例:

  1. #include<stdio.h>
  2. #include<malloc.h>
  3. #define MAXSIZE 30
  4. #define TRUE 1
  5. #define FALSE 0
  6. #define OK 1
  7. #define ERROR 0
  8. #define OVERFLOW -1
  9. typedef int Status;
  10. typedef int ElemType;
  11. typedef struct LNode /* 定义链式存储结构 */
  12. {
  13. ElemType data;
  14. struct LNode *next;
  15. }LNode,*LinkList;
  16. int Get_LinkList(LinkList H, ElemType key) ;//按值查询,找到则返回其位置,未找到则返回0
  17. Status ListInsert(LinkList &H,int i,ElemType e);
  18. Status ListDelete(LinkList &H,int i);
  19. Status Creat_LinkList(LinkList &L) /* 创建链式表 */
  20. {
  21. LinkList head,r,s;
  22. int k;
  23. head=(LinkList)malloc(sizeof(LNode));
  24. head->next=NULL;
  25. r=head;
  26. scanf("%d",&k);
  27. while(k>0)
  28. {
  29. s=(LNode *)malloc(sizeof(LNode));
  30. s->data=k;
  31. s->next=NULL;
  32. r->next=s;
  33. r=s;
  34. scanf("%d",&k);
  35. }
  36. L=head;
  37. return OK;
  38. }/* Creat_LinkList */
  39. void Print_LinkList( LinkList H) /* 输出链式表 */
  40. {
  41. LNode *p;
  42. p=H->next;
  43. while(p!=NULL)
  44. {
  45. printf("%d ",p->data);
  46. p=p->next;
  47. }
  48. printf("\n");
  49. }/* Print_LinkList */
  50. int main()
  51. {
  52. ElemType key;
  53. LinkList L;
  54. int p,loc;
  55. Creat_LinkList(L); //创建单链表
  56. Print_LinkList(L); //输出单链表
  57. scanf("%d",&key); //读入待查找的值
  58. p=Get_LinkList(L,key); //
  59. printf("key在第%d位\n",p);
  60. scanf("%d%d",&key,&loc); //输入要插入的值key以及位置loc
  61. ListInsert(L,loc,key);
  62. Print_LinkList(L);
  63. scanf("%d",&loc);//输入要删除元素的位置
  64. ListDelete(L,loc);
  65. Print_LinkList(L);
  66. return 0;
  67. }
  68. /* 请在这里填写答案 */

输入样例:

  1. 1 2 3 4 5 6 0
  2. 3
  3. 10 2
  4. 5

输出样例:

  1. 1 2 3 4 5 6
  2. key在第3
  3. 1 10 2 3 4 5 6
  4. 1 10 2 3 5 6

参考答案:

  1. Status Get_LinkList(LinkList H, ElemType key)
  2. {
  3. int index;
  4. LNode *p;
  5. p=(LNode *)malloc(sizeof(LNode));
  6. p=H->next;
  7. index=1;
  8. while(p->next!=NULL and p->data!=key)
  9. {
  10. p=p->next;
  11. index++;
  12. }
  13. if(p->next==NULL) return 0;
  14. else return index;
  15. }
  16. Status ListInsert(LinkList &H,int i,ElemType e)
  17. {
  18. if(i<1) return ERROR;
  19. LNode *p,*q;
  20. p=(LNode *)malloc(sizeof(LNode));
  21. q=(LNode *)malloc(sizeof(LNode));
  22. int j=1;
  23. p=H;
  24. while(j!=i)
  25. {
  26. if(p==NULL) return ERROR;
  27. j++;
  28. p=p->next;
  29. }
  30. q->data=e;
  31. q->next=p->next;
  32. p->next=q;
  33. return OK;
  34. }
  35. Status ListDelete(LinkList &H,int i)
  36. {
  37. if(i<1) return ERROR;
  38. LNode *p,*q;
  39. p=(LNode *)malloc(sizeof(LNode));
  40. q=(LNode *)malloc(sizeof(LNode));
  41. int j=1;
  42. p=H;
  43. while(j<i)
  44. {
  45. p=p->next;
  46. j++;
  47. }
  48. q=p->next;
  49. p->next=p->next->next;
  50. free(q);
  51. return OK;
  52. }
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/花生_TL007/article/detail/552800
推荐阅读
相关标签
  

闽ICP备14008679号