数据结构——动态顺序表(DEV C++版本)

之前写的动态顺序表是在vs2022中完成的,为了照顾没有vs2022的家人,发布一篇DEV版本

c 复制代码
#include<stdio.h>
#include<stdlib.h>
#include<assert.h>
typedef struct {
	int *arr;
	int size;
	int capacity;
}SL;
SL s;
void init(SL* ps)
{
	ps->arr=NULL;
	ps->capacity=0;
	ps->size=0;
 } 
 void print(SL* ps)
 {
 	int i=0;
 	for(i=0;i<ps->size;i++)
 	{
 		printf("%d  ",ps->arr[i]);
	 }
	 printf("\n");
 }
 void check(SL* ps)
 {
 	int newcapacity=ps->capacity==0?4:2*ps->capacity;
 	if(ps->size==ps->capacity)
 	{
 		int* temp=(int*)realloc(ps->arr,sizeof(int)*2*ps->capacity);
 		if(temp==NULL)
 		{
 			printf("error\n");
 			exit(-1);
		 }
		 else
		 {
		 	ps->arr=temp;
		 	ps->capacity=newcapacity;
		 }
	 }
 }
 void pushback(SL* ps,int x)
 {
 	
 	check(ps);
 	ps->arr[ps->size]=x;
 	ps->size++;
 }
 void pushfront(SL* ps,int x)
 {
 	check(ps);
 	int end=ps->size-1;
 	while(end>=0)
 	{
 		ps->arr[end+1]=ps->arr[end];
 		end--;
	 }
	 ps->size++;
	 ps->arr[0]=x;
 }
 void deleteback(SL* ps)
 {
 	ps->size--;
 }
 void deletefront(SL* ps)
 {
 	int tail=1;
 	while(tail<ps->size)
 	{
 		ps->arr[tail-1]=ps->arr[tail];
 		tail++;
	 }
	 ps->size--;
 }
 void pushrandom(SL* ps,int index,int x)
 {
 	assert(index<=ps->size);
 	check(ps);
 	int end=ps->size;
 	while(end>index)
 	{
 		ps->arr[end]=ps->arr[end-1];
 		end--;
	 }
	 ps->arr[index]=x;
	 ps->size++;
 }
 void deleterandom(SL* ps,int index)
 {
 	assert(index<ps->size);
 	int begin =index;
 	while(begin<=ps->size-1)
 	{
 		ps->arr[begin]=ps->arr[begin+1];
 		begin++;
	 }
	 ps->size--;
 }
 void updata(SL* ps,int index,int x)
 {
 	ps->arr[index]=x;
 }
 void test()
 {
 	init(&s);
 	pushback(&s,2);
 	pushback(&s,1);
 	pushback(&s,1);
 	pushfront(&s,5);
 	pushfront(&s,8);
 	pushfront(&s,9);
 	print(&s); 
 	deleteback(&s);
 	deleteback(&s);
 	deletefront(&s);
 	deletefront(&s);
 	print(&s);
 	pushrandom(&s,1,5);
 	print(&s);
 	pushrandom(&s,1,9);
 	print(&s);
 	pushrandom(&s,1,8);
 	print(&s);
 	pushrandom(&s,1,2);
 	print(&s);
 	pushrandom(&s,1,3);
 	print(&s);
 	deleterandom(&s,1);
 	print(&s);
 	deleterandom(&s,1);
 	print(&s);
 	deleterandom(&s,1);
 	print(&s);
 	deleterandom(&s,1);
 	print(&s);
 	deleterandom(&s,1);
 	print(&s);
 	updata(&s,0,2);
 	print(&s);
 }
 int main()
 {
 	test();
 	free(s.arr);
 	return 0;
 }
相关推荐
zyhomepage9 分钟前
科技的成就(六十四)
开发语言·人工智能·科技·算法·内容运营
想做白天梦28 分钟前
多级反馈队列
java·windows·算法
潇雷29 分钟前
算法Day12|226-翻转二叉树;101-对称二叉树;104-二叉树最大深度;111-二叉树最小深度
java·算法·leetcode
爱编程— 的小李1 小时前
开关灯问题(c语言)
c语言·算法·1024程序员节
韭菜盖饭1 小时前
LeetCode每日一题3211---生成不含相邻零的二进制字符串
数据结构·算法·leetcode
czme1 小时前
线程和进程
linux·数据结构·计算机网络
极客代码1 小时前
C/C++ 随机数生成方法
c语言·开发语言·c++·算法
甜甜向上呀2 小时前
【数据结构】快速排序(三种实现方式)
算法·排序算法
旋转的油纸伞2 小时前
大模型,多模态大模型面试【LoRA,分类,动静态数据类型,DDPM,ControlNet,IP-Adapter, Stable Diffusion】
算法·leetcode·面试·职场和发展·散列表
XUE_DING_E2 小时前
Educational Codeforces Round 171
算法