顺序表的实现

简介: 顺序表的实现

SeqList.h文件

#pragma once
#include<stdio.h>
#include<stdlib.h>
#define INIT_CAPACITY 4
typedef int SLDataType;
#define N 10
typedef struct SeqList
{
  SLDataType* a;
  int size;  //有效数据个数
  int capacity;//空间的容量
}SL;
void SLInit(SL* ps);
void SLDestory(SL* s);
void SLExpend(SL* s);
void Push_Back(SL* ps, SLDataType x);
void Pop_Back(SL* ps);
void SLPrint(SL* ps);
void Push_Front(SL* ps, SLDataType x);
void Pop_Front(SL* ps);

SeqList.c文件

#include"SeqList.h"
void SeqInit(SL* ps)
{
  ps->a= (SLDataType*)malloc(sizeof(SLDataType) * INIT_CAPACITY);
  if (ps->a == NULL)
  {
    perror("malloc fail");
  }
  ps->size = 0;
  ps->capacity= INIT_CAPACITY;
}
void SLDestroy(SL* ps)
{
  free(ps->a);
  ps->a = NULL;
  ps->capacity = 0;
  ps->size = 0;
}
void SLExpend(SL* s)
{
  SLDataType* tmp = (SLDataType*)realloc(s->a, sizeof(SLDataType)*s->capacity * 2);
  if (tmp == NULL)
  {
    perror("realloc fail");
    return;
  }
  s->a = tmp;
  s->capacity *= 2;
  printf("扩容成功\n");
}
void Push_Back(SL* ps, SLDataType x)
{
  if (ps->capacity == ps->size)
  {
    SLExpend(ps);
  }
  ps->a[ps->size++] = x;
}
void SLPrint(SL* ps)
{
  for (int i = 0; i < ps->size; i++)
  {
    printf("%d ", ps->a[i]);
  }
  puts("");
}
void Pop_Back(SL* ps)
{
  if (ps->size == 0)
  {
    return;
  }
  ps->size--;
}
void Push_Front(SL* ps, SLDataType x)
{
  if (ps->capacity == ps->size)
  {
    SLExpend(ps);
  }
  int end = ps->size;
  while (end)
  {
    ps->a[end] = ps->a[end - 1];
    end--;
  }
  ps->a[0] = x;
  ps->size++;
}
void Pop_Front(SL* ps)
{
  int pos = 1;
  while (pos < ps->size)
  {
    ps->a[pos - 1] = ps->a[pos];
    pos++;
  }
  ps->size--;
}

test.c文件

#include"SeqList.h"
int main(void)
{
  SL s;
  SeqInit(&s);
  Push_Back(&s, 1);
  Push_Back(&s, 2);
  Push_Back(&s, 8);
  Push_Back(&s, 8);
  Push_Front(&s, 100);
  Push_Front(&s, 99);
  Push_Front(&s, 98);
  SLPrint(&s);
  Pop_Front(&s);
  Pop_Front(&s);
  SLPrint(&s);
  printf("%d %d", s.capacity, s.size);
  return 0;
}


目录
相关文章
|
8月前
|
存储 测试技术 C语言
顺序表详解(SeqList)
顺序表详解(SeqList)
237 0
|
存储
【顺序表】
【顺序表】
54 0
|
7月前
|
算法
顺序表的应用
顺序表的应用
48 5
|
7月前
|
存储 算法
顺序表专题
顺序表专题
49 4
|
7月前
|
存储
25.顺序表专题
25.顺序表专题
|
8月前
|
存储
顺序表讲解
顺序表讲解
63 0
|
8月前
顺序表的实现
顺序表的实现
|
测试技术
顺序表(2)
顺序表(2)
555 0
|
存储 C语言
顺序表(1)
顺序表(1)
83 0
|
存储 NoSQL
03 顺序表
03 顺序表
37 0