第3周项目一 :顺序表的基本运算

来源:互联网 发布:淘宝小号点数是什么 编辑:程序博客网 时间:2024/06/05 05:04
  1. *Copyright (c) 2017, 烟台大学计算机学院 
  2.  *All rights reserved. 
  3.  *文件名称:渣.cpp 
  4.  *作    者:张行 
  5.  *完成日期:2017年9月14日 
  6.  *版 本 号:v1.0 
  7.  * 
  8.  *问题描述:输出线性表
  9.  *输入描述:如图所示
这里写图片描述

main.cpp:

#include <stdio.h>
#include <malloc.h>


#include "123123.h"
int main()
{
    SqList *sq;
    ElemType x[6]= {5,8,7,2,4,9};
    CreateList(sq, x, 6);
    DispList(sq);
    return 0;
}




fun.cpp:


#include "123123.h"
#include "malloc.h"
//下面实现要测试的各个自定义函数
//用数组创建线性表
void CreateList(SqList *&L, ElemType a[], int n)
{
    int i;
    L=(SqList *)malloc(sizeof(SqList));
    for (i=0; i<n; i++)
        L->data[i]=a[i];
    L->length=n;
}


//输出线性表DispList(L)
void DispList(SqList *L)
{
    int i;
    if (ListEmpty(L))
        return;
    for (i=0; i<L->length; i++)
        printf("%d ",L->data[i]);
    printf("\n");
}


//判定是否为空表ListEmpty(L)
bool ListEmpty(SqList *L)
{
    return(L->length==0);
}




123123.cpp:



#include <stdio.h>
#define MaxSize 50    //Maxsize将用于后面定义存储空间的大小
typedef int ElemType;  //ElemType在不同场合可以根据问题的需要确定,在此取简单的int
typedef struct
{
    ElemType data[MaxSize];  //利用了前面MaxSize和ElemType的定义
    int length;
} SqList;


void CreateList(SqList *&L, ElemType a[], int n);//用数组创建线性表
void DispList(SqList *L);//输出线性表DispList(L)
bool ListEmpty(SqList *L);//判定是否为空表ListEmpty(L)
原创粉丝点击