91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

C++?數據結構中單鏈表的示例分析

發布時間:2022-03-25 13:33:28 來源:億速云 閱讀:131 作者:小新 欄目:開發技術

小編給大家分享一下C++ 數據結構中單鏈表的示例分析,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

一、鏈表是什么

鏈表是一種物理存儲結構上非連續、非順序的存儲結構,數據元素的邏輯順序是通過鏈表中的指針鏈接依次實現的。

C++?數據結構中單鏈表的示例分析

  • 由圖,鏈式結構在邏輯上是連續的,但是物理上不一定連續

  • 顯示中結點一般是從堆上申請出來的

  • 從堆上申請的空間,是按照一定的策略劃分的,兩次申請的空間,可能連續,可能不連續,見順序表

C++?數據結構中單鏈表的示例分析

鏈表的分類

鏈表也可以分為很多種

1. 單向或者雙向
2. 帶頭或者不帶頭
3. 循環或非循環

C++?數據結構中單鏈表的示例分析

C++?數據結構中單鏈表的示例分析

C++?數據結構中單鏈表的示例分析

我們最常用的還是無頭單向非循環鏈表和帶頭雙向循環鏈表 本篇我們實現無頭單向非循環鏈表增刪查改

二、鏈表的實現

基本結點結構

typedef int SLTDateType;
typedef struct SListNode
{
SLTDateType data;
struct SListNode* next;
}SListNode;

頭文件

//llist.h
#pragma once
#include <stdio.h>
#include <assert.h>
#include <stdlib.h>
#include <string.h>
typedef int SLTDateType;
typedef struct SListNode
{
	SLTDateType data;
	struct SListNode* next;
}SListNode;

// 動態申請一個節點
SListNode* BuySListNode(SLTDateType x);
// 單鏈表打印
void SListPrint(SListNode* plist);
// 單鏈表尾插
void SListPushBack(SListNode** pplist, SLTDateType x);
// 單鏈表的頭插
void SListPushFront(SListNode** pplist, SLTDateType x);
// 單鏈表的尾刪
void SListPopBack(SListNode** pplist);
// 單鏈表頭刪
void SListPopFront(SListNode** pplist);
// 單鏈表查找
SListNode* SListFind(SListNode* plist, SLTDateType x);
// 單鏈表在pos位置之后插入x
// 分析思考為什么不在pos位置之前插入?
void SListInsertAfter(SListNode* pos, SLTDateType x);
// 單鏈表刪除pos位置之后的值
// 分析思考為什么不刪除pos位置?
void SListEraseAfter(SListNode* pos);
// 單鏈表的銷毀
void SListDestory(SListNode* plist);

動態申請一個節點

C++?數據結構中單鏈表的示例分析

// 動態申請一個節點
SListNode* BuySListNode(SLTDateType x)
{
	SListNode* newnode = (SListNode*)malloc(sizeof(SListNode));
	if (newnode == NULL)//申請失敗
	{
		printf("malloc fail\n");
		exit(-1);
	}
	else
	{
		newnode->data = x;
		newnode->next = NULL;
	}
	return newnode;
}

單鏈表打印

鏈表單個結點中,data存儲數據,next存儲下一個結點的地址,可以通過next訪問下一個結點

C++?數據結構中單鏈表的示例分析

C++?數據結構中單鏈表的示例分析

// 單鏈表打印
void SListPrint(SListNode* plist)
{
	SListNode* cur = plist;
	while (cur != NULL)
	{
		printf("%d->", cur->data);
		cur = cur->next;//訪問下一個結點
	}
	printf("NULL\n");
}

單鏈表尾插

C++?數據結構中單鏈表的示例分析

這里傳入了頭結點的地址的指針,是因為有可能要改變頭結點的情況,傳址調用幻術,如果只傳入*plist,相當于只改變形參,實參不會有實際改變,通過pplist可以解決這個問題

C++?數據結構中單鏈表的示例分析

// 單鏈表尾插
void SListPushBack(SListNode** pplist, SLTDateType x)
{
	SListNode* newnode = BuySListNode(x);
	if (*pplist == NULL)//空鏈表
	{
		*pplist = newnode;
	}
	else
	{
		SListNode* tail = *pplist;//遍歷至最后插入
		while (tail->next != NULL)
		{
			tail = tail->next;
		}
		tail->next = newnode;
	}
}

單鏈表的尾刪

一前一后遍歷,找到空后直接free(tail),將prev->next置空即可

C++?數據結構中單鏈表的示例分析

// 單鏈表的尾刪
void SListPopBack(SListNode** pplist)
{
	assert(pplist);
	if (*pplist == NULL)//空鏈表,無需刪除
	{
		return;
	}
	else
	{
		SListNode* prev = NULL;
		SListNode* tail = *pplist;
		{
			while (tail->next != NULL)
			{
				prev = tail;
				tail = tail->next;
			}

			free(tail);
			tail = NULL;
			prev->next = NULL;
		}
	}
}

單鏈表的頭插

C++?數據結構中單鏈表的示例分析

有點繞,要多想想

// 單鏈表的頭插
void SListPushFront(SListNode** pplist, SLTDateType x)
{
	assert(pplist);
	SListNode* newnode = BuySListNode(x);
	newnode->next = *pplist;
	*pplist = newnode;
}

單鏈表頭刪

C++?數據結構中單鏈表的示例分析

比較簡單

// 單鏈表頭刪
void SListPopFront(SListNode** pplist)
{
	assert(pplist);
	if (*pplist == NULL)//鏈表為空
	{
		return;
	}
	else
	{
		SListNode* next = (*pplist)->next;
		free(*pplist);
		*pplist = next;
	}
}
// 單鏈表查找
遍歷即可
SListNode* SListFind(SListNode* plist, SLTDateType x)
{
	SListNode* cur = plist;
	while (cur != NULL)
	{
		if (cur->data = x)
		{
			return cur;
		}
		cur = cur->next;
	}

	retuen NULL;
}

*單鏈表在pos位置之后插入x

為什么不在pos之前插入,由于我們是單向鏈表,需要從頭遍歷查找pos,如果在pos之前插入,找到pos還需找到pos之前的地址,對所傳參數不友好,所以我們一般在后插入

C++?數據結構中單鏈表的示例分析

//單鏈表在pos位置之后插入x
void SListInsertAfter(SListNode* pos, SLTDateType x)
{
	assert(pos);
	SListNode* newnode = BuySListNode(x);
	newnode->next = pos->next;
	pos->next = newnode;
}

單鏈表刪除pos位置之后的值 為什么不刪除pos位置,同上,在邏輯上和傳參不友好.

C++?數據結構中單鏈表的示例分析

// 單鏈表刪除pos位置之后的值
void SListEraseAfter(SListNode* pos)
{
	assert(pos);
	SListNode* next = pos->next;
	if (next)
	{
		pos->next = next->next;
		free(next);
		next = NULL;
	}
}

單鏈表的銷毀 鏈表不像順序表連續刪頭就可以,由于鏈表是一個一個分散的結點,需要逐一刪除

C++?數據結構中單鏈表的示例分析

// 單鏈表的銷毀
void SListDestory(SListNode** pplist)
{
	assert(*pplist);
	SListNode* cur = *pplist;
	while (cur)
	{
		SListNode* next = cur->next;
		free(cur);
		cur = next;
	}
	*pplist = NULL;
}

看完了這篇文章,相信你對“C++ 數據結構中單鏈表的示例分析”有了一定的了解,如果想了解更多相關知識,歡迎關注億速云行業資訊頻道,感謝各位的閱讀!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

c++
AI

永定县| 白河县| 灵寿县| 萨迦县| 西乌珠穆沁旗| 孝义市| 杭州市| 芦山县| 陆河县| 广南县| 巴东县| 榆社县| 沙河市| 石棉县| 东丽区| 靖远县| 阳新县| 莫力| 宿松县| 伊宁县| 浙江省| 丰台区| 化德县| 博兴县| 英德市| 乐山市| 尼木县| 扶风县| 定日县| 贡觉县| 沐川县| 宁明县| 靖边县| 涪陵区| 响水县| 务川| 葵青区| 广安市| 安远县| 太原市| 龙里县|