静态链表(c语言数据结构)

静态链表定:
逻辑结构上相邻的数据元素,存储在指定的一块内存空间中,数据元素只允许在这块内存空间中随机存放,这样的存储结构生成的链表称为静态链表。也就是说静态链表是用数组来实现链式存储结构,目的是方便在不设指针类型的高级程序设计语言中使用链式结构。它的优点是和动态链表一样,删除和插入元素时间复杂度低;不足是和数组一样,需要提前分配一块较大的空间。

老师代码如下:

#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;
	int i;
	for (i = 1; i < DEFAULT_SIZE; i ++){
		tempPtr->used[i] = 0;
	}// Of for i

	return tempPtr;
}// Of initLinkedList

/**
 * Print the list.
 * @param 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.
 * @param paraListPtr The position of the list.
 * @param paraChar The given char.
 * @param 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.
 * @param paraHeader The header of the list.
 * @param 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. Initialize an empty list.
	ListPtr tempList = initLinkedList();
	printList(tempList);

	// Step 2. Add some characters.
	insertElement(tempList, 'H', 0);
	insertElement(tempList, 'e', 1);
	insertElement(tempList, 'l', 2);
	insertElement(tempList, 'l', 3);
	insertElement(tempList, 'o', 4);
	printList(tempList);

	// Step 3. Delete some characters (the first occurrence).
	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.
 */
void main(){
	appendInsertDeleteTest();
}// Of main

我的代码如下:

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) * MAXSIZE);
	tempPtr->used = (int*)malloc(sizeof(int) * MAXSIZE);

	tempPtr->nodes[0].data = '\0';
	tempPtr->nodes[0].next = -1;

	tempPtr->used[0] = 1;
	int i;
	for (i = 1; i < MAXSIZE; 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, q, i;
    
    //判断位置是否合法 
	p = 0;
	for (i = 0; i < paraPosition; i ++) {
		p = paraListPtr->nodes[p].next;
		if (p == -1) {
			printf("%d的位置超出列表范围!\n", paraPosition);
			return;
		}
	}

	// 创建新结点 
	for (i = 1; i < MAXSIZE; i ++){
		if (paraListPtr->used[i] == 0){
			printf("已分配空间%d.\n", i);
			paraListPtr->used[i] = 1;
			q = i;
			break;
		}
	}
	if (i == MAXSIZE){
		printf("没有空间.\r\n");
		return;
	}

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

	//链接 
	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("不能删除%c\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);
	insertElement(tempList, 'w', 5);
	insertElement(tempList, 'o', 6);
	insertElement(tempList, 'r', 7);
	insertElement(tempList, 'l', 8);
	insertElement(tempList, 'd', 9);
	insertElement(tempList, '!', 10);
	printList(tempList);

	//删除元素 
	printf("Deleting 'e'.\n");
	deleteElement(tempList, 'e');
	printf("Deleting 'a'.\n");
	deleteElement(tempList, 'a');
	printf("Deleting 'o'.\n");
	deleteElement(tempList, 'o');
	printf("Deleting 'w'.\n");
	deleteElement(tempList, 'w');	
	printList(tempList);
	printf("Deleting '!'.\n");
	deleteElement(tempList, '!');
	printf("Deleting 'l'.\n");
	deleteElement(tempList, 'l');
	printList(tempList)	;
	insertElement(tempList, '0', 1);
	insertElement(tempList, '5', 5);
	insertElement(tempList, '4', 17);
	printList(tempList);
}

完整代码:

#include <stdio.h>
#include <malloc.h>

#define MAXSIZE 10

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) * MAXSIZE);
	tempPtr->used = (int*)malloc(sizeof(int) * MAXSIZE);

	tempPtr->nodes[0].data = '\0';
	tempPtr->nodes[0].next = -1;

	tempPtr->used[0] = 1;
	int i;
	for (i = 1; i < MAXSIZE; 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, q, i;
    
    //判断位置是否合法 
	p = 0;
	for (i = 0; i < paraPosition; i ++) {
		p = paraListPtr->nodes[p].next;
		if (p == -1) {
			printf("%d的位置超出列表范围!\n", paraPosition);
			return;
		}
	}

	// 创建新结点 
	for (i = 1; i < MAXSIZE; i ++){
		if (paraListPtr->used[i] == 0){
			printf("已分配空间%d.\n", i);
			paraListPtr->used[i] = 1;
			q = i;
			break;
		}
	}
	if (i == MAXSIZE){
		printf("没有空间.\r\n");
		return;
	}

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

	//链接 
	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("不能删除%c\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);
	insertElement(tempList, 'w', 5);
	insertElement(tempList, 'o', 6);
	insertElement(tempList, 'r', 7);
	insertElement(tempList, 'l', 8);
	insertElement(tempList, 'd', 9);
	insertElement(tempList, '!', 10);
	printList(tempList);

	//删除元素 
	printf("Deleting 'e'.\n");
	deleteElement(tempList, 'e');
	printf("Deleting 'a'.\n");
	deleteElement(tempList, 'a');
	printf("Deleting 'o'.\n");
	deleteElement(tempList, 'o');
	printf("Deleting 'w'.\n");
	deleteElement(tempList, 'w');	
	printList(tempList);
	printf("Deleting '!'.\n");
	deleteElement(tempList, '!');
	printf("Deleting 'l'.\n");
	deleteElement(tempList, 'l');
	printList(tempList)	;
	insertElement(tempList, '0', 1);
	insertElement(tempList, '5', 5);
	insertElement(tempList, '4', 17);
	printList(tempList);
}

//入口 
void main(){
	appendInsertDeleteTest();
}

测试结果:

已分配空间1.
已分配空间2.
已分配空间3.
已分配空间4.
已分配空间5.
已分配空间6.
已分配空间7.
已分配空间8.
已分配空间9.
没有空间.
10的位置超出列表范围!
 Helloworl
Deleting 'e'.
Deleting 'a'.
不能删除a
Deleting 'o'.
Deleting 'w'.
 Hllorl
Deleting '!'.
不能删除!
Deleting 'l'.
 Hlorl
已分配空间2.
已分配空间3.
17的位置超出列表范围!
 H0lor5l
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 1
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 1
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

小白123**

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值