静态链表的插入,增添和删除

说点废话,再上代码!

静态链表是一种使用数组实现的链表结构,其优缺点如下:

优点:
1. 不需要频繁地进行内存分配和释放,因为静态链表的空间是预先分配好的,可以直接使用。
2. 相对于数组,静态链表可以更方便地进行插入和删除操作,因为只需要修改指针,不需要移动元素。
3. 静态链表可以避免内存碎片的问题,因为所有元素都是连续存储的。

缺点:
1. 静态链表的大小是固定的,不能动态地扩展或缩小,因此可能会浪费一些空间。
2. 静态链表的插入和删除操作需要修改指针,可能会导致指针混乱或者出现空洞,需要额外的维护工作。
3. 静态链表的访问速度可能会比较慢,因为需要通过指针来访问元素,而指针的访问速度相对较慢。

#define _CRT_SECURE_NO_WARNINGS 1
#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;

/**
 * Initialize the list with a header.
 * @return The pointer to the header.
 */
ListPtr initLinkedList() {
	// The pointer to the whole list space.
	ListPtr tempPtr = (ListPtr)malloc(sizeof(struct StaticLinkedList));

	// Allocate total space.
	tempPtr->nodes = (NodePtr)malloc(sizeof(struct StaticLinkedNode) * DEFAULT_SIZE);
	tempPtr->used = (int*)malloc(sizeof(int) * DEFAULT_SIZE);


	// The first node is the header.
	tempPtr->nodes[0].data = '\0';
	tempPtr->nodes[0].next = -1;

	// Only the first node is used.
	tempPtr->used[0] = 1;
	for (int i = 1; i < DEFAULT_SIZE; i++) {
		tempPtr->used[i] = 0;
	}// Of for i

	return tempPtr;
}// Of initLinkedList

/*
 *Print the list.
 *paraListPtr The pointer to the list.
 */
void printList(ListPtr paraListPtr) {
	int p = 0;
	while (p != -1) {
		printf("%c", paraListPtr->nodes[p].data);
		p = paraListPtr->nodes[p].next;
	}// of while
	printf("\r\n");
}// of printList

/*
*Insert an element to the given position.
*paraLIstPtr The position of the list.
*paraChar The given char.
paraPosition The given position.
*/
void insertElement(ListPtr paraListPtr, char paraChar, int paraPosition) {
	int p, q, i;

	// Step 1. Search to the position.
	p = 0;
	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;
		}// Of if
	} // Of for i

	// Step 2. Construct a new node.
	for (i = 1; i < DEFAULT_SIZE; i++) {
		if (paraListPtr->used[i] == 0) {
			// This is identical to malloc.
			printf("Space at %d allocated.\r\n", i);
			paraListPtr->used[i] = 1;
			q = i;
			break;
		}// Of if
	}// Of for i
	if (i == DEFAULT_SIZE) {
		printf("No space.\r\n");
		return;
	}// Of if

	paraListPtr->nodes[q].data = paraChar;

	// Step 3. Now link.
	printf("linking\r\n");
	paraListPtr->nodes[q].next = paraListPtr->nodes[p].next;
	paraListPtr->nodes[p].next = q;
}// Of insertElement

/*
*Delete an element from the list.
*paraHeader The header of the list.
paraChar The given char,
*/
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;
	}// Of while

	if (paraListPtr->nodes[p].next == -1) {
		printf("Cannot delete %c\r\n", paraChar);
		return;
	}// of if

	q = paraListPtr->nodes[p].next;
	paraListPtr->nodes[p].next = paraListPtr->nodes[paraListPtr->nodes[p].next].next;

	//This statement is identical to free(q).
	paraListPtr->used[q] = 0;
}// of deleteElement

/*
*Unit test.
*/
void appendInsertDeleteTest() {
	// Step 1. Inittialize an empty list.
	ListPtr tempList = initLinkedList();
	printList(tempList);

	// Step 2. Add some characters.
	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);
}// of appendInsertDeleteTest

/*
*The entrance.
*/
int main() {
	appendInsertDeleteTest();
	return 0;
}// of main

静态链表主要是利用数组开辟一块date,next域储存数据,然后另一块used域用于标记某一节点的占用情况。

运行结果:

 收获:大概掌握了静态链表的增添,删减。感觉比动态链表要绕一点,代码也比动态链表复杂,相当于是利用一个数组的结构体来充当指针。

添加

 删除

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值