数据结构静态链表

静态链表是一种利用数组实现链表的数据结构。它通过数组中存储元素的下标来构建链表,而不是使用指针。每个节点包含两部分内容:数据和下一个元素在数组中的下标。静态链表可以克服动态链表频繁分配、释放内存的缺点,但它的长度固定且不易修改。关于静态链表的代码如下:

#include<stdio.h>
#include<malloc.h>
#define DEFAULT_SIZE 5

typedef struct StaticLinkedNode{
	char data;
	int next;
}*NodePtr;

typedef struct StaticLinkedList{
	NodePtr nodes;
	int *used;
	
}*ListPtr;

ListPtr initLinkedList(){
	ListPtr tempPtr=(ListPtr)malloc(sizeof(struct StaticLinkedList));
	
	tempPtr->nodes=(NodePtr)malloc(sizeof(struct StaticLinkedNode)*DEFAULT_SIZE);
	tempPtr->used=(int*)malloc(sizeof(int)*DEFAULT_SIZE);
	
	tempPtr->nodes[0].data='\0';
	tempPtr->nodes[0].next=-1;
	
	tempPtr->used[0]=-1;
	int i;
	for(i=0;i<DEFAULT_SIZE;i++){
		tempPtr->used[i]=0;
	}
	return tempPtr;
} 
//初始化静态链表 
void printList(ListPtr paraListPtr){
	int p=0;
	while(p!=-1){
		printf("%c",paraListPtr->nodes[p].data);
		p=paraListPtr->nodes[p].next;
	}
	printf("\r\n");
}
//打印静态链表 
void insertElement(ListPtr paraListPtr,char paraChar,int paraposition){
	int p=0,q,i;
	for(i=0;i<paraposition;i++){
		p=paraListPtr->nodes[p].next;
		if(p==-1){
			printf("The position %d is beyond the scope of the list.\r\n",paraposition);
			return;
		}
	}
	for(i=1;i<DEFAULT_SIZE;i++){
		if(paraListPtr->used[i]==0){
			printf("Space at %d allocated.\r\n",i);
			paraListPtr->used[i]=1;
			q=i;
			break;
		}
	}
	if(i==DEFAULT_SIZE){
		printf("No space.\r\n");
		return;
	}
	paraListPtr->nodes[q].data=paraChar;
	printf("linking\r\n");
	paraListPtr->nodes[q].next=paraListPtr->nodes[p].next;
	paraListPtr->nodes[p].next=q; 
}
//指定位置插入数据 
void deleteElement(ListPtr paraListPtr,char paraChar){
	int p,q;
	p=0;
	while((paraListPtr->nodes[p].next!=-1)&&(paraListPtr->nodes[paraListPtr->nodes[p].next].data!=paraChar)){
		p=paraListPtr->nodes[p].next;
	}
	if(paraListPtr->nodes[p].next==-1){
		printf("Cannot delete %c\r\n",paraChar);
		return;
	}
	q=paraListPtr->nodes[p].next;
	paraListPtr->nodes[p].next=paraListPtr->nodes[paraListPtr->nodes[p].next].next;
	paraListPtr->used[q]=0; 
}
//删除指定数据 
void appendInsertDeleteTest(){
	ListPtr tempList=initLinkedList();
	printList(tempList);
	
	insertElement(tempList,'H',0);
	insertElement(tempList,'e',1);
	insertElement(tempList,'l',2);
	insertElement(tempList,'l',3);
	insertElement(tempList,'o',4);
	printList(tempList);
	
	printf("Deleting 'e'.\r\n");
	deleteElement(tempList,'e');
	printf("Deleting 'a'.\r\n");
	deleteElement(tempList,'a');
	printf("Deleting 'o'.\r\n");
	deleteElement(tempList,'o');
	printList(tempList);
	
	insertElement(tempList,'x',1);
	printList(tempList);
}
//测试样例 
void main(){
	appendInsertDeleteTest();
}

以上代码实现了对静态链表的创建、增添和删除,运行结果如下:
在这里插入图片描述
通过对静态链表的学习,我了解到静态链表是一种用数组模拟链表的数据结构,它具有较好的空间利用率和时间复杂度,对于理解链表的实现原理和考虑内存分配等问题都有很大的帮助。通过学习静态链表,我深刻认识到了数组和指针在数据结构中的重要性,并且掌握了如何使用这两种数据类型来实现链表。此外,静态链表还可以用于一些特殊的应用场景,如图的存储和路径查找等,这也为我的工程实践提供了一些启示。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 2
    评论
评论 2
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值