当前位置:   article > 正文

数据结构(实验一 顺序表的存储和运算)_实验目的 熟悉顺序表的逻辑特性、存储表示方法和顺序表的基本操作。 实验内容 编

实验目的 熟悉顺序表的逻辑特性、存储表示方法和顺序表的基本操作。 实验内容 编

实验一、顺序表的表示和运算

实验目的:

熟悉顺序表的逻辑特性、存储表示方法和顺序表的基本操作。

实验要求:

能够实现线性表的顺序存储表示,能够实现顺序表的基本操作及应用。

实验内容:

编写程序实现下列的要求:

(1)设数据元素为整数,实现这样的线性表的顺序存储表示。

(2)键盘输入若干个数据元素,利用顺序表的基本操作,建立该表。

(3)利用顺序表的基本操作,找出表中的最大的和最小的数据元素(用于比较的数据元素为整数)。

(4)* 若数据元素为学生成绩(含姓名、成绩等字段),重新编程,实现上面的要求。要求尽可能少地修改前面的程序来得到新程序。(这里用于比较的字段为分数)

练习及思考题:

(1) 不同类型的数据元素所对应的顺序表在类型定义和操作实现上有什么异同?

(2) 顺序表的操作上有什么特点?

(3) 不固定数据元素的个数,而通过特殊数据来标记输入数据的结束,实现这样的输入操作。

main.cpp

  1. #include<iostream>
  2. #include "sqlist.h"
  3. using namespace std;
  4. int main(){
  5. SqList L;
  6. InitSqList(L);//初始化
  7. CreateSqList(L);//创建
  8. Insert(L);//指定位置插入
  9. Delete(L);//指定位置删除
  10. Get(L);//按位查找
  11. Locate(L);//按值查找
  12. IncreaSize(L);//扩容
  13. return 0;
  14. }

basic.cpp

  1. #include "sqlist.h"
  2. #include<iostream>
  3. using namespace std;
  4. //初始化
  5. void InitSqList(SqList &L){//初始化顺序表L,顺序表的下标从0开始
  6. L.data=new ElemType[InitSize];
  7. L.length=0;
  8. L.MaxSize=InitSize;
  9. }
  10. //销毁
  11. void DestroySqList(SqList &L){//销毁顺序表L
  12. delete L.data;
  13. }
  14. //按位查找
  15. bool GetElem(SqList L,int i,ElemType &e){//在顺序表L中查找第i个元素,并返回该元素和状态
  16. if(i<1||i>L.length) return false;
  17. e=L.data[i-1];
  18. return true;
  19. }
  20. //按值查找
  21. int LocateElem(SqList L,ElemType e){//在顺序表L中查找值为e的元素,返回它的位置,如果没有,返回-1
  22. for(int i=0;i<L.length;i++){
  23. if(L.data[i]==e){
  24. return i+1;
  25. }
  26. }
  27. return -1;
  28. }
  29. //插入
  30. bool IncreaseElem(SqList &L,int i,ElemType e){//在顺序表L的第i个位置插入元素e,返回一个新的顺序表L和状态
  31. if(i<1||i>L.length+1) return false;//插入位置不合法
  32. if(L.length==L.MaxSize) return false;//表已经满了,无法继续插入
  33. for(int j=L.length-1;j>=i-1;j--){
  34. L.data[j+1]=L.data[j];
  35. }
  36. L.data[i-1]=e;
  37. L.length++;
  38. return true;
  39. }
  40. //删除
  41. bool DeleteElem(SqList &L,int i,ElemType &e){//在顺序表L的第i个位置删除元素,返回一个新的顺序表L、被删除的元素和状态
  42. if(i<1||i>L.length) return false;
  43. e=L.data[i-1];
  44. for(int j=i;j<L.length;j++){
  45. L.data[j-1]=L.data[j];
  46. }
  47. L.length--;
  48. return true;
  49. }
  50. //判空
  51. bool Empty(SqList L){//判断顺序表L是否为空
  52. if(L.length==0) return true;
  53. else return false;
  54. }
  55. //输出打印
  56. void PrintList(SqList L){
  57. for(int i=0;i<L.length;i++){
  58. cout<<L.data[i]<<" ";
  59. }
  60. cout<<endl;
  61. }

extra.cpp

  1. #include "sqlist.h"
  2. #include<iostream>
  3. using namespace std;
  4. //增加容量
  5. void IncreaseSize(SqList &L,int len){//为顺序表L增加len的容量,返回一个新的顺序表L
  6. ElemType *p=L.data;
  7. L.data=new ElemType[L.MaxSize+len];
  8. L.MaxSize+=len;
  9. for(int i=0;i<L.length;i++){
  10. L.data[i]=p[i];
  11. }
  12. delete p;//释放原来的空间
  13. }
  14. //建立顺序表
  15. void CreateSqList(SqList &L){
  16. cout<<"----------------------建立顺序表-------------------------"<<endl;
  17. cout<<"请输入整数,用9999表示结束:"<<endl;
  18. int x;
  19. cin>>x;
  20. int cnt=1;
  21. while(x!=9999){
  22. IncreaseElem(L,cnt,x);
  23. cin>>x;
  24. cnt++;
  25. }
  26. cout<<"创建成功:";
  27. PrintList(L);//输出
  28. }
  29. //插入
  30. void Insert(SqList &L){
  31. cout<<"---------------------- 插入 -------------------------"<<endl;
  32. cout<<"请输入要插入的位置:";
  33. int i;
  34. cin>>i;
  35. cout<<"请输入要插入的数据元素:";
  36. ElemType e;
  37. cin>>e;
  38. if(IncreaseElem(L,i,e)){
  39. cout<<"插入成功:";
  40. PrintList(L);
  41. }else{
  42. cout<<"插入失败!"<<endl;
  43. }
  44. }
  45. //删除
  46. void Delete(SqList &L){
  47. cout<<"---------------------- 删除 -------------------------"<<endl;
  48. cout<<"请输入要删除的位置:";
  49. int i;
  50. cin>>i;
  51. ElemType e=0;
  52. if(DeleteElem(L,i,e)){
  53. cout<<"删除的数据元素是:"<<e<<endl;
  54. cout<<"删除成功:";
  55. PrintList(L);
  56. }else{
  57. cout<<"删除失败!"<<endl;
  58. }
  59. }
  60. //按位查找
  61. void Get(SqList L){
  62. cout<<"---------------------- 按位查找 -------------------------"<<endl;
  63. cout<<"请输入您要查询的位置:";
  64. int i;
  65. cin>>i;
  66. ElemType e=0;
  67. if(GetElem(L,i,e)){
  68. cout<<"查找成功:第"<<i<<"个位置上的数据为"<<e<<endl;
  69. }else{
  70. cout<<"按位查找失败!"<<endl;
  71. }
  72. }
  73. //按值查找
  74. void Locate(SqList L){
  75. cout<<"---------------------- 按值查找 -------------------------"<<endl;
  76. cout<<"请输入您要查询的数值:";
  77. ElemType e;
  78. cin>>e;
  79. if(LocateElem(L,e)!=-1){
  80. cout<<"查找成功:"<<e<<"在顺序表中的位置为"<<LocateElem(L,e)<<endl;
  81. }else{
  82. cout<<"查找失败,顺序表中没有值为"<<e<<"的数据元素"<<endl;
  83. }
  84. }
  85. //扩容
  86. void IncreaSize(SqList &L){
  87. cout<<"---------------------- 扩容 -------------------------"<<endl;
  88. cout<<"当前容量:"<<L.MaxSize<<endl;
  89. cout<<"请输入您要扩大的容量:";
  90. int len;
  91. cin>>len;
  92. IncreaseSize(L,len);
  93. cout<<"扩容成功,当前容量:"<<L.MaxSize<<endl;
  94. }

 sqlist.h

  1. #ifndef CIRCLE_H
  2. #define CIRCLE_H
  3. #define InitSize 100
  4. typedef int ElemType;
  5. typedef struct SqList{
  6. ElemType *data;//动态分配
  7. int length;
  8. int MaxSize;
  9. }SqList;
  10. void InitSqList(SqList &L);//初始化
  11. void DestroySqList(SqList &L);//销毁
  12. bool GetElem(SqList L,int i,ElemType &e);//按位查找
  13. int LocateElem(SqList L,ElemType e);//按值查找
  14. bool IncreaseElem(SqList &L,int i,ElemType e);//插入
  15. bool DeleteElem(SqList &L,int i,ElemType &e);//删除
  16. bool Empty(SqList L);//判空
  17. void PrintList(SqList L);//打印输出
  18. void CreateSqList(SqList &L);//创建
  19. void IncreaseSize(SqList &L,int len); //扩容
  20. void Insert(SqList &L);
  21. void Delete(SqList &L);
  22. void Get(SqList L);
  23. void Locate(SqList L);
  24. void IncreaSize(SqList &L);
  25. #endif

 

 

 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/凡人多烦事01/article/detail/674260
推荐阅读
相关标签
  

闽ICP备14008679号