C语言实现动态顺序表的实现代码

C语言实现动态顺序表的实现代码

顺序表是在计算机内存中以数组的形式保存的线性表,是指用一组地址连续的存储单元依次存储数据元素的线性结构。线性表采用顺序存储的方式存储就称之为顺序表。顺序表是将表中的结点依次存放在计算机内存中一组地址连续的存储单元中。

静态实现:结构体内部只需两个成员,其中一个为固定大小(MAX)的数组,用来存放我们的数据。数组大小我们可以通过在头文件中改变MAX的值来改变。

动态实现:在内存中开辟一块空间,可以随我们数据数量的增多来扩容。

来看看动态的顺序表实现:

1.seqlist.h

#define _CRT_SECURE_NO_WARNINGS 1 

#ifndef __SEQLIST_H__
#define __SEQLIST_H__
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <assert.h> 

typedef int DataType; 

#define DEFAULT_SZ 3
#define INC_SZ 2 

typedef struct SeqList
{
 DataType *data;
 int sz;
 int capacity;
}SeqList,*pSeqList; 

void InitSeqList(pSeqList pList);
void PushBack(pSeqList pList,DataType d);
void PopBack(pSeqList pList);
void PushFront(pSeqList pList, DataType d);
void PopFront(pSeqList pList);
int Find(pSeqList pList, DataType d);
void Remove(pSeqList pList, DataType d);
void RemoveAll(pSeqList pList, DataType d);
void BubbleSort(pSeqList pList);
int BinarySearch(pSeqList pList, DataType d);
void PrintfSeqList(pSeqList pList);
void Insert(pSeqList pList, int pos, DataType d);
void ReverseList(pSeqList pList);
void DestroySeqList(pSeqList pList); 

#endif//__SEQLIST_H__

2.seqlist.c

#define _CRT_SECURE_NO_WARNINGS 1 

#include "seqlist.h" 

void InitSeqList(pSeqList pList)
{
 pList->sz = 0;
 pList->data = (DataType*)malloc(sizeof(DataType)*DEFAULT_SZ);
 if (pList->data == NULL)
 {
  perror("malloc");
  return;
 }
 memset(pList->data, 0, sizeof(DataType)*DEFAULT_SZ);
}
void CheckCapacity(pSeqList pList)
{
 assert(pList);
 if (pList->sz == pList->capacity)
 {
  DataType*ret = (DataType*)realloc(pList->data, sizeof(DataType)*(pList->capacity + INC_SZ));
  if (ret == NULL)
  {
   perror("realloc");
  }
  pList->data = ret;
  pList->capacity += INC_SZ; 

 }
}
void PushBack(pSeqList pList, DataType d)
{
 assert(pList);
 if (pList->sz == pList->capacity)
 {
  CheckCapacity(pList);
 }
 pList->data[pList->sz] = d;
 pList->sz++;
}
void PopBack(pSeqList pList)
{
 int i = 0;
 assert(pList);
 if (pList->sz == 0)
 {
  printf("顺序表为空:<");
  return;
 }
 pList->sz--;
}
void PushFront(pSeqList pList, DataType d)
{
 int i = 0;
 assert(pList);
 if (pList->sz == pList->capacity)
 {
  CheckCapacity(pList);
 }
 for (i = pList->sz; i >= 1; i--)
 {
  pList->data[i] = pList->data[i - 1];
 }
 pList->data[0] = d;
 pList->sz++;
}
void PopFront(pSeqList pList)
{
 int i = 0;
 assert(pList);
 for (i = 0; i < pList->sz; i++)
 {
  pList->data[i] = pList->data[i + 1];
 }
 pList->sz--;
}
int Find(pSeqList pList, DataType d)
{
 int i = 0;
 assert(pList);
 while (i < pList->sz)
 {
  if (pList->data[i] == d)
  {
   return i;
  }
  else
  {
   i++;
  }
 }
 return -1;
}
void Remove(pSeqList pList, DataType d)
{
 int i = 0;
 int pos = 0;
 assert(pList);
 while (pList->data[pos=Find(pList,d)]==d)
 {
  for (i = pos; i < pList->sz-1; i++)
  {
   pList->data[i] = pList->data[i + 1];
  }
  pList->sz--;
 }
}
void RemoveAll(pSeqList pList, DataType d)
{
 int i = 0;
 int pos = 0;
 assert(pList);
 while ((pos = Find(pList, d)) != -1)
 {
  for (i = pos; i < pList->sz - 1; i++)
  {
   pList->data[i] = pList->data[i + 1];
  }
  pList->sz--;
 }
}
void BubbleSort(pSeqList pList)
{
 int i = 0;
 assert(pList);
 for (i = 0; i < pList->sz - 1; i++)
 {
  int j = 0;
  for (j = 0; j < pList->sz - i - 1; j++)
  {
   if (pList->data[j]>pList->data[j + 1])
   {
    DataType tmp = pList->data[j];
    pList->data[j] = pList->data[j + 1];
    pList->data[j + 1] = tmp;
   }
  }
 }
}
int BinarySearch(pSeqList pList, DataType d)
{
 int left = 0;
 int right = pList->sz - 1;
 assert(pList);
 while (left <= right)
 {
  int mid = left - ((left - right) >> 1);
  if (d > pList->data[mid])
  {
   left = mid + 1;
  }
  else if (d < pList->data[mid])
  {
   right = mid - 1;
  }
  else
   return mid;
 }
 return -1;
}
void PrintfSeqList(pSeqList pList)
{
 int i = 0;
 for (i = 0; i < pList->sz; i++)
 {
  printf("%d ", pList->data[i]);
 }
}
void Insert(pSeqList pList, int pos, DataType d)
{
 int i = 0;
 if (pList->sz == pList->capacity)
 {
  CheckCapacity(pList);
 }
 for (i = pList->sz - 1; i >= pos; i--)
 {
  pList->data[i + 1] = pList->data[i];
 }
 pList->data[pos] = d;
 pList->sz++;
}
void ReverseList(pSeqList pList)
{
 int left = 0;
 int right = pList->sz - 1;
 assert(pList);
 while (left < right)
 {
  DataType tmp = pList->data[left];
  pList->data[left] = pList->data[right];
  pList->data[right] = tmp;
  left++;
  right--;
 }
}
void DestroySeqList(pSeqList pList)
{
 free(pList->data);
 pList->data = NULL;
}

3.test.c

#define _CRT_SECURE_NO_WARNINGS 1
#include "seqlist.h" 

//void Test()
//{
// SeqList *List;
// InitSeqList(&List);
// PushBack(&List, 1);
// PushBack(&List, 2);
// PushBack(&List, 3);
// PushBack(&List, 4);
// PushBack(&List, 5);
// PopBack(&List);
// printf("%d ", Find(&List, 2));
// PrintfSeqList(&List);
//} 

void Test2()
{
 SeqList List;
 InitSeqList(&List);
 PushBack(&List, 1);
 PushBack(&List, 2);
 PushBack(&List, 3);
 PushBack(&List, 4);
 PushBack(&List, 5);
 PushFront(&List, 5);
 PushFront(&List, 2);
 PushFront(&List, 3);
 //PopFront(&List);
 RemoveAll(&List, 5);
 //BubbleSort(&List);
 //BinarySearch(&List, 3);
 PrintfSeqList(&List);
}
int main()
{
 Test2();
 system("pause\n");
 return 0;
}

静态顺序表的实现:http://www.jb51.net/article/120875.htm

以上就是动态实现顺序表的实例,如有疑问请留言或者到本站社区交流讨论,感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!

(0)

相关推荐

  • c语言实现顺序表的基本操作

    数据结构顺序表操作 复制代码 代码如下: #include <stdio.h>#include <stdlib.h>#include <malloc.h>#define LIST_INIT_SIZE 100#define LISINCREMENT 10#define ElemType int#define Status inttypedef struct Sq{ ElemType *elem; int length; int listsize;}SqList;Statu

  • 利用C语言实现顺序表的实例操作

    本文实例讲述了C语言实现顺序表(线性表)的方法.分享给大家供大家参考,具体如下: 一:顺序表代码实现 #ifndef _SEQ_LIST_H #define _SEQ_LIST_H #include <stdio.h> #include <stdlib.h> #include <assert.h> #include <string.h> #define ElemType float //以float类型测试算法通用性,而不是以惯用的int #define I

  • C语言实现顺序表基本操作汇总

    本文汇总了C语言下实现及操作顺序表的方法,对于学习数据结构的朋友来说是一个不错的参考程序.完整代码如下: #include<stdio.h> #include<stdlib.h> #define TRUE 1 #define FALSE 0 #define OK 1 #define ERROR 0 #define OVERFLOW -2 #define LIST_INIT_SIZE 100 #define LISTINCREMENT 10 typedef int status ;

  • 用C语言举例讲解数据结构中的算法复杂度结与顺序表

    数据结构算法复杂度 1.影响算法效率的主要因素 (1)算法采用的策略和方法: (2)问题的输入规模: (3)编译器所产生的代码: (4)计算机执行速度. 2.时间复杂度 // 时间复杂度:2n + 5 long sum1(int n) { long ret = 0; \\1 int* array = (int*)malloc(n * sizeof(int)); \\1 int i = 0; \\1 for(i=0; i<n; i++) \\n { array[i] = i + 1; } for(

  • C语言顺序表的实现代码

    本文实例为大家分享了C语言实现顺序表的具体代码,供大家参考,具体内容如下 seqlist.h #ifndef __SEQLIST_H__ #define __SEQLIST_H__ #include<cstdio> #include<malloc.h> #include<assert.h> #define SEQLIST_INIT_SIZE 8 #define INC_SIZE 3 //空间增量的大小 typedef int ElemType; typedef stru

  • C语言顺序表实现代码排错

    今天本来想写段代码练练手,想法挺好结果,栽了个大跟头,在这个错误上徘徊了4个小时才解决,现在分享出来,给大家提个醒,先贴上代码: 复制代码 代码如下: /******************************************** * 文件名称:sqlist.h * 文件描述:线性表顺序存储演示 * 文件作者:by Wang.J,in 2013.11.16 * 文件版本:1.0 * 修改记录:*********************************************/

  • C语言线性表的顺序表示与实现实例详解

    1.概述 通常来说顺序表是在计算机的内存中以数组的形式保存的线性表,是用一组地址连续的存储单元依次存储数据元素的线性数据结构.线性表采用顺序存储的方式存储就称之为顺序表.顺序表是将表中的结点依次存放在计算机内存中一组地址连续的存储单元中. 将表中元素一个接一个的存入一组连续的存储单元中,这种存储结构就是顺序结构. 采用顺序存储结构的线性表简称为" 顺序表".顺序表的存储特点是:只要确定了起始位置,表中任一元素的地址都通过下列公式得到:LOC(ai)=LOC(a1)+(i-1)*L 1≤

  • C语言实现静态顺序表的实例详解

    C语言实现静态顺序表的实例详解 线性表 定义一张顺序表也就是在内存中开辟一段连续的存储空间,并给它一个名字进行标识.只有定义了一个顺序表,才能利用该顺序表存放数据元素,也才能对该顺序表进行各种操作. 接下来看看静态的顺序表,直接上代码: SeqList.h #define _CRT_SECURE_NO_WARNINGS 1 #ifndef __SEQLIST_H__ #define __SEQLIST_H__ #include <stdio.h> #include <stdlib.h&g

  • C语言实现动态顺序表的实现代码

    C语言实现动态顺序表的实现代码 顺序表是在计算机内存中以数组的形式保存的线性表,是指用一组地址连续的存储单元依次存储数据元素的线性结构.线性表采用顺序存储的方式存储就称之为顺序表.顺序表是将表中的结点依次存放在计算机内存中一组地址连续的存储单元中. 静态实现:结构体内部只需两个成员,其中一个为固定大小(MAX)的数组,用来存放我们的数据.数组大小我们可以通过在头文件中改变MAX的值来改变. 动态实现:在内存中开辟一块空间,可以随我们数据数量的增多来扩容. 来看看动态的顺序表实现: 1.seqli

  • C语言实现动态顺序表的示例代码

    目录 顺序表概念及结构 基本操作 功能实现 程序运行 顺序表概念及结构 顺序表是用一段物理地址连续的存储单元依次存储数据元素的线性结构,一般情况下采用数组存储.在数组上完成数据的增删查改. 分类: 一般分为静态顺序表和动态顺序表: 静态顺序表:数组大小是固定的用完了无法增容:同时我们无法控制给数组开多少空间合适,开少了,空间不够:开多了,有回会存在空间浪费: 动态顺序表:空间是可以变动的,空间满了我们就增容:解决了静态顺序表的空间不足问题,同时也在一定程度上减少了空间浪费: 因此本篇博客主要实现

  • 新手向超详细的C语言实现动态顺序表

    目录 一.各个函数接口的实现 1.1 不太好''李姐''的"容量检测函数" 1.2 在任意位置插入的函数"坑!" 1.3 在任意位置删除数据的函数 1.4 其余简单的接口函数 二.顺序表结构体声明与定义 三.头文件的调用 一.各个函数接口的实现 1.1 不太好''李姐''的"容量检测函数" 对顺序表进行插入数据时,需要判断顺序表的容量是否充足,增加数据的同时需要反复地检测容量,所以推荐直接将以上步骤封装成一个函数. 函数实现算法:若容量大小 ==

  • C语言实现动态顺序表详解

    目录 什么是顺序表? 1. 定义顺序表结构体: 2. 初始化顺序表: 3. 销毁顺序表: 4. 打印顺序表: 5. 判断容量+扩容: 6. 头插数据: 7. 尾插数据: 8. 指定下标位置插入数据: 9. 删除数据: 10. 尾删数据: 11. 指定下标位置删除数据: 12. 查找数据: 13. 修改数据: 14. 源代码: 1. SeqList.h: 2. SeqList.cpp: 3. test.cpp: 15. 测试: 总结 什么是顺序表? 顺序表是在计算机内存中以数组的形式保存的线性表,

  • C++实现动态顺序表

    本文实例为大家分享了C++实现动态顺序表的具体代码,供大家参考,具体内容如下 Vector.h #pragma once #include <stdio.h> #include <iostream> #include <assert.h> #include <string.h> using namespace std; typedef int DataType; class Vector { public: Vector() :_first(NULL) ,

  • C语言动态顺序表实例代码

    目录 顺序表概念: 一.准备工作 二.顺序表的基本操作  1.顺序表的初始化函数 2.尾插函数(在尾部插入数据) 3.头插函数(在数组头部插入数据)  4.尾删函数 5.头删函数 6.在第pos的位置插入数据 7.删除第pos个位置的数据 8.修改第pos个位置的数据 9.查找函数. 10.销毁函数 11.打印函数 三.总代码: 顺序表概念:         顺序表是用一段物理地址连续的存储单元依次存储数据元素的线性结构.一般情况下用数组存储.在数组上完成数据的增删查改. 代码解析: 一.准备工

  • C语言 超详细顺序表的模拟实现实例建议收藏

    目录 概念及结构 接口实现 1 顺序表的动态存储 2 顺序表初始化 3 顺序表的销毁 4 顺序表的尾插 5 顺序表的尾删 6 顺序表的头插 7 顺序表的头删 8 顺序表容量的检查与扩容 9 顺序表任意位置的插入 10 顺序表任意位置的删除 11 顺序表的打印 12 顺序表元素的查找 13 顺序表元素的修改 概念及结构 顺序表是用一段物理地址连续的存储单元依次存储数据元素的线性结构,一般情况下采用数组存储.在数组 上完成数据的增删查改. 顺序表一般可以分为: 静态顺序表:使用定长数组存储元素,元素

  • C语言深入浅出讲解顺序表的实现

    目录 1.线性表 2.顺序表 2.1 概念及结构 2.2 提供接口 2.3 接口实现 今天起开始编写数据结构中的各种数据结构及算法的实现,说到顺序表,我们首先得了解下线性表. 1.线性表 线性表(linear list)是n个具有相同特性的数据元素的有限序列. 线性表是一种在实际中广泛使用的数据结构,常见的线性表:顺序表.链表.栈.队列.字符串… 线性表在逻辑上是线性结构,也就说是连续的一条直线.但是在物理结构上并不一定是连续的,线性表在物理上存储时,通常以数组和链式结构的形式存储. 2.顺序表

  • C语言 超详细顺序表的模拟实现实例建议收藏

    目录 概念及结构 接口实现 1 顺序表的动态存储 2 顺序表初始化 3 顺序表的销毁 4 顺序表的尾插 5 顺序表的尾删 6 顺序表的头插 7 顺序表的头删 8 顺序表容量的检查与扩容 9 顺序表任意位置的插入 10 顺序表任意位置的删除 11 顺序表的打印 12 顺序表元素的查找 13 顺序表元素的修改 概念及结构 顺序表是用一段物理地址连续的存储单元依次存储数据元素的线性结构,一般情况下采用数组存储.在数组 上完成数据的增删查改. 顺序表一般可以分为: 静态顺序表:使用定长数组存储元素,元素

随机推荐