首頁 > 軟體

C++雙向連結串列的增刪查改操作方法講解

2023-03-27 06:01:40

一、什麼是雙連結串列

  雙向連結串列也叫雙連結串列,是連結串列的一種,它是單連結串列的升級版,與單連結串列不同的是,它的每個資料結點中都有兩個指標,分別指向直接後繼和直接前驅。而單連結串列只有一個指標,指向後繼。

雙連結串列示意圖

  首先創立一個結構體,其中包含一個prev指標,一個val值以及一個next指標。如圖可以看出其中prev指標指向的是上一個結構體,而next指標指向的是下一個結構體。結構體程式碼

typedef int LTDataType;
typedef struct ListNode
{
	LTDataType _data;
	struct ListNode* _next;
	struct ListNode* _prev;
}ListNode;

二、雙連結串列功能函數

1、建立返回連結串列的頭結點

ListNode* ListCreate()
{
	ListNode* guard = (ListNode*)malloc(sizeof(ListNode));
	if (guard == NULL)
	{
		perror("ListCreate");
		exit(-1);
	}
	guard->_next = guard;
	guard->_prev = guard;
	return guard;
}

2、雙向連結串列列印

void ListPrint(ListNode* pHead)
{
	assert(pHead);
	ListNode* cur = pHead;
	while (cur->_next != pHead)
	{
		cur = cur->_next;
		printf("%d->", cur->_data);
	}
	printf("NULLn");
	return;
}

3、雙向連結串列尾插

void ListPushBack(ListNode* pHead, LTDataType x)
{
	ListNode* newnode = (ListNode*)malloc(sizeof(ListNode));
	if (newnode == NULL)
	{
		perror("ListPushBack");
		exit(-1);
	}
	newnode->_data = x;
	ListNode* cur = pHead->_prev;
	newnode->_next = pHead;
	newnode->_prev = cur;
	cur->_next = newnode;
	pHead->_prev = newnode;
	return;
}

4、雙向連結串列尾刪

void ListPopBack(ListNode* pHead)
{
	assert(pHead);
	ListNode* pre = pHead->_prev->_prev;
	free(pHead->_prev);
	pre->_next = pHead;
	pHead->_prev = pre;
	return;
}

5、雙向連結串列頭插

void ListPushFront(ListNode* pHead, LTDataType x)
{
	assert(pHead);
	ListNode* newnode = (ListNode*)malloc(sizeof(ListNode));
	if (newnode == NULL)
	{
		perror("ListPushFront");
		exit(-1);
	}
	newnode->_data = x;
	newnode->_next = pHead->_next;
	newnode->_prev = pHead;
	pHead->_next = newnode;
	newnode->_next->_prev = newnode;
	return;
}

6、雙向連結串列頭刪

void ListPopFront(ListNode* pHead)
{
	assert(pHead);
	ListNode* cur = pHead->_next->_next;
	free(pHead->_next);
	pHead->_next = cur;
	cur->_prev = pHead;
	return;
}

7、雙向連結串列查詢

ListNode* ListFind(ListNode* pHead, LTDataType x)
{
	assert(pHead);
	ListNode* cur = pHead;
	while (cur->_next != pHead)
	{
		cur = cur->_next;
		if (cur->_data == x)
			return cur;
	}
	printf("Can't find.n");
	return NULL;
}

8、雙向連結串列在pos的前面進行插入

void ListInsert(ListNode* pos, LTDataType x)
{
	assert(pos);
	ListNode* newnode = (ListNode*)malloc(sizeof(ListNode));
	if (newnode == NULL)
	{
		perror("ListPushFront");
		exit(-1);
	}
	ListNode* cur = pos->_prev;
	newnode->_next = pos;
	newnode->_prev = cur;
	pos->_prev = newnode;
	cur->_next = newnode;
	return;
}

9、雙向連結串列刪除pos位置的節點

void ListErase(ListNode* pos)
{
	ListNode* front = pos->_prev;
	ListNode* behind = pos->_next;
	free(pos);
	front->_next = behind;
	behind->_prev = front;
	return;
}

10、雙向連結串列銷燬

void ListDestory(ListNode* pHead)
{
	assert(pHead);
	while (pHead->_next != pHead)
	{
		pHead->_next = pHead->_next->_next;
		free(pHead->_next->_prev);
		pHead->_next->_prev = pHead;
	}
	return;
}

到此這篇關於C++雙向連結串列的增刪查改操作方法講解的文章就介紹到這了,更多相關C++雙向連結串列的增刪查改內容請搜尋it145.com以前的文章或繼續瀏覽下面的相關文章希望大家以後多多支援it145.com!


IT145.com E-mail:sddin#qq.com