顺序表的创建和就地逆置

//库函数头文件包含
#include<stdio.h>
#include<malloc.h>
#include<stdlib.h>


//函数状态码定义
#define TRUE        1
#define FALSE       0
#define OK          1
#define ERROR       0
#define INFEASIBLE -1
#define OVERFLOW   -2


typedef int  Status;


//顺序表的存储结构定义
#define LIST_INIT_SIZE  100
#define LISTINCREMENT   10
typedef int ElemType;  //假设线性表中的元素均为整型
typedef struct{
    ElemType* elem;   //存储空间基地址
    int length;       //表中元素的个数
    int listsize;     //表容量大小
}SqList;    //顺序表类型定义


Status ListCreate_Sq(SqList &L);
void ListReverse_Sq(SqList &L);


int main() {
    SqList L;
    ElemType *p;


    if(ListCreate_Sq(L)!= OK) {
        printf("ListCreate_Sq: 创建失败!!!\n");
        return -1;
    }


    ListReverse_Sq(L);


    if(L.length){
for(p=L.elem;p<L.elem+L.length-1;++p){
   printf("%d ",*p);
}
printf("%d",*p);
    }
    return 0;
}
/* 请在这里填写答案 */
int n;
Status ListCreate_Sq(SqList &L)
{
      /*思路:开辟存储空间并判定;初始化表长表容量;*/
      L.elem = (ElemType*)malloc(n*sizeof(ElemType));
      if(!L.elem)  exit(OVERFLOW);
      L.length = n;
      L.listsize = n;


      scanf("%d",&n);
      for(int i=1;i<=n;i++)
      {
            scanf("%d",&L.elem[i]);
      }
      return OK;
}
void ListReverse_Sq(SqList &L)
{


      for(int i=n;i>=1;i--)
      {
            if(i==1)
                  printf("%d",L.elem[i]);
            if(i!=1)
            printf("%d ",L.elem[i]);
      }
}
  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值