数据结构 线性表-顺序表的应用?
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数据结构 线性表-顺序表的应用?相关的知识,希望对你有一定的参考价值。
1、 完成下列程序的填空。
#include <stdio.h>
#include <malloc.h>
#define MAXSIZE 1024
typedef int ElemType;
typedef struct //定义顺序表结构
elem[MAXSIZE];
;
ALIST;
void AListCreate(ALIST *a) //初始化顺序表
;
void AListInput(ALIST *a) //建立顺序表
ElemType temp;
scanf("%d",&temp);
while(temp!=999)
;
a->length++;
scanf("%d",&temp);
void AListReverse(ALIST *a) //实现顺序表逆置
int i;
ElemType temp;
for(i=0; ;i++)
;
;
;
void AListOutput(ALIST *a) //输出顺序表
int i;
for(i=0;i<a->length;i++)
;//要求输出格式是域宽为8
void AListDestroy(ALIST *a) //销毁顺序表
free(a->elem);
free(a);
int main()
ALIST a;
AListCreate(&a);
;
AListReverse(&a);
AListOutput(&a);
putchar('\n');
AListDestroy(&a);
return 0;
#include <malloc.h>
#define MAXSIZE 1024
typedef int ElemType;
typedef struct //定义顺序表结构
ElemType elem[MAXSIZE];
ElemType length;
ALIST;
void AListCreate(ALIST *a) //初始化顺序表
a->length = 0;
void AListInput(ALIST *a) //建立顺序表
ElemType temp;
scanf("%d",&temp);
while(temp!=999)
a->elem[a->length] = temp;
a->length++;
scanf("%d",&temp);
void AListReverse(ALIST *a) //实现顺序表逆置
int i;
ElemType temp;
for(i=0;i < a->length/2;i++)
temp = a->elem[i];
a->elem[i] = a->elem[a->length-1-i];
a->elem[a->length-1-i] = temp;
void AListOutput(ALIST *a) //输出顺序表
int i;
for(i=0;i<a->length;i++)
printf("%-8d",a->elem[i]);//要求输出格式是域宽为8
void AListDestroy(ALIST *a) //销毁顺序表
free(a->elem);
free(a);
int main()
ALIST a;
AListCreate(&a);
AListInput(&a);
AListReverse(&a);
AListOutput(&a);
putchar('\n');
AListDestroy(&a);
return 0;
参考技术B 线性表是最基本、最简单、也是最常用的一种数据结构。线性表(linear list)是数据结构的一种,一个线性表是n个具有相同特性的数据元素的有限序列。
线性表中数据元素之间的关系是一对一的关系,即除了第一个和最后一个数据元素之外,其它数据元素都是首尾相接的(注意,这句话只适用大部分线性表,而不是全部。比如,循环链表逻辑层次上也是一种线性表(存储层次上属于链式存储,但是把最后一个数据元素的尾指针指向了首位结点)。
中文名
线性表
外文名
linear list
元素关系
一对一
类别
一般线性表和受限线性表
优点
逻辑结构简单,便于实现和操作
快速
导航
特征基本操作存储结构结构特点线性表的推广
简介
定义
线性表(linear list)是数据结构的一种,一个线性表是n个具有相同特性的数据元素的有限序列。数据元素是一个抽象的符号,其具体含义在不同的情况下一般不同。
在稍复杂的线性表中,一个数据元素可由多个数据项(item)组成,此种情况下常把数据元素称为记录(record),含有大量记录的线性表又称文件(file)。
《数据结构》实验二:线性表实验(顺序表)
一、实验目的
巩固线性表的数据结构,学会线性表的应用。
1.回顾线性表的逻辑结构,线性表的物理存储结构和常见操作。
2.学习运用线性表的知识来解决实际问题。
3.进一步巩固程序调试方法。
4.进一步巩固模板程序设计。
二、实验内容
1.建立一个N个学生成绩的顺序表,对表进行插入、删除、查找等操作。分别输出结果。
#include<iostream>
using namespace std;
const int Maxsize = 100;
class Score
public:
Score() length = 0;
Score(int a[], int n);
~Score()
int Locate(int x);
void Insert(int i, int x);
int Delete(int i);
void Printlist();
private:
int data[Maxsize];
int length;
;
Score::Score(int a[], int n)
if (n>Maxsize) throw"参数非法";
for (int i = 0; i<n; i++)
data[i] = a[i];
length = n;
void Score::Insert(int i, int x)
if (length >= Maxsize) throw"上溢";
if (i<1 || i>length + 1) throw"位置非法";
for (int j = length; j >= i; j--)
data[j] = data[j - 1];
data[i - 1] = x;
length++;
int Score::Delete(int i)
if (length == 0) throw"下溢";
if (i<1 || i>length) throw"位置非法";
int x = data[i - 1];
for (int j = i; j<length; j++)
data[j - 1] = data[j];
length--;
return x;
int Score::Locate(int x)
for (int i = 0; i<length; i++)
if (data[i] == x) return i + 1;
return 0;
void Score::Printlist()
for (int i = 0; i<length; i++)
cout << data[i] << " ";
cout << endl;
void main()
int r[10] = 89, 65, 74, 81, 67, 43, 66, 84, 100, 59 ;
Score L(r, 10);
cout << "执行插入操作的前的数据为:" << endl;
L.Printlist();
try
L.Insert(4, 55);
catch (char *s)
cout << s << endl;
cout << "执行插入操作后的数据为:" << endl;
L.Printlist();
cout << "值为81的元素位置为:";
cout << L.Locate(81) << endl;
cout << "执行删除第一个元素操作,删除前数据为:" << endl;
L.Printlist();
try
L.Delete(1);
catch (char *s)
cout << s << endl;
cout << "删除后的数据为:" << endl;
L.Printlist();
int s;
cin >> s;
以上是关于数据结构 线性表-顺序表的应用?的主要内容,如果未能解决你的问题,请参考以下文章