單向迴圈鏈表的介面程式

来源:https://www.cnblogs.com/ljw-boke/p/18153827
-Advertisement-
Play Games

單向迴圈鏈表的介面程式 單向迴圈鏈表 頭文件 #include <stdbool.h> #include <stdio.h> #include <string.h> #include <stdlib.h> ​``` 鏈表、節點的創建 /******************************** ...


單向迴圈鏈表的介面程式

單向迴圈鏈表

image

頭文件

#include <stdbool.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
​```

鏈表、節點的創建

/*******************************************************************
 *
 *	file name:	單向迴圈鏈表的介面程式
 *	author	 :  [email protected]
 *	date	 :  2024-4-23
 *	function :
 * 	note	 :  None
 *
 *	CopyRight (c)  2024   [email protected]   All Right Reseverd
 *
 * *****************************************************************/

// 指的是單向迴圈鏈表中的結點有效數據類型,用戶可以根據需要進行修改
typedef int DataType_t;
// 構造單向迴圈鏈表的結點,鏈表中所有結點的數據類型應該是相同的
typedef struct CircularLinkedList
{
	DataType_t data;				 // 結點的數據域
	struct CircularLinkedList *next; // 結點的指針域

} CircLList_t;
/********************************************************************
 *
 *	name	 :	CircLList_Create
 *	function :  創建一個空的單向迴圈順序鏈表,空鏈表應該有一個頭結點,對鏈表進行初始化
 *	argument :	None
 *
 *	retval	 :  返回創建的鏈表的頭地址
 *	author	 :  [email protected]
 *	date	 :  2024-4-23
 * 	note	 :	None
 *
 * *****************************************************************/
CircLList_t *CircLList_Create(void)
{
	// 1.創建一個頭結點並對頭結點申請記憶體
	CircLList_t *Head = (CircLList_t *)calloc(1, sizeof(CircLList_t));
	if (NULL == Head)
	{
		perror("Calloc memory for Head is Failed");
		exit(-1);
	}
	// 2.對頭結點進行初始化,頭結點是不存儲數據域,指針域指向自身,體現“迴圈”思想
	Head->next = Head;

	// 3.把頭結點的地址返回即可
	return Head;
}
/********************************************************************
 *
 *	name	 :	CircLList_NewNode
 *	function :  創建新的結點,並對新結點進行初始化(數據域 + 指針域)
 *	argument :	@data:需插入的數據
 *
 *	retval	 :  返回新創建鏈表節點的地址
 *	author	 :  [email protected]
 *	date	 :  2024-4-23
 * 	note	 :	None
 *
 * *****************************************************************/
CircLList_t *CircLList_NewNode(DataType_t data)
{
	// 1.創建一個新結點並對新結點申請記憶體
	CircLList_t *New = (CircLList_t *)calloc(1, sizeof(CircLList_t));
	if (NULL == New)
	{
		perror("Calloc memory for NewNode is Failed");
		return NULL;
	}
	// 2.對新結點的數據域和指針域進行初始化
	New->data = data;
	New->next = NULL;
	return New;
}
​```

三種節點插入方式

在鏈表頭部插入新節點

image

在鏈表尾部插入新節點

image

在鏈表中某數據後插入新節點

image

代碼

/********************************************************************
 *
 *	name	 :	CircLList_HeadInsert
 *	function :  向鏈表的頭部進行數據插入
 *	argument :	@head:目標鏈表
 *				@data:需插入的數據
 *	retval	 :  返回新創建鏈表節點的地址
 *	author	 :  [email protected]
 *	date	 :  2024-4-22
 * 	note	 :	None
 *
 * *****************************************************************/
bool CircLList_HeadInsert(CircLList_t *Head, DataType_t data)
{
	// 備份頭節點
	CircLList_t *Phead = Head;
	// 1.創建新的結點,並對新結點進行初始化
	CircLList_t *New = CircLList_NewNode(data);
	if (NULL == New)
	{
		printf("can not insert new node\n");
		return false;
	}
	// 2.判斷鏈表是否為空,如果為空,則直接插入即可
	if (Head == Head->next)
	{
		Head->next = New;
		New->next = New;
		return true;
	}
	// 3.如果鏈表為非空,則把新結點插入到鏈表的頭部
	while (Phead->next)
	{
		Phead = Phead->next;
		if (Phead->next == Head->next)
		{
			break;
		}
	}
	Phead->next = New;		// 尾結點指向新的首節點
	New->next = Head->next; // 新節點指向原首節點
	Head->next = New;		// 頭節點指向新的首節點
	return true;
}

/********************************************************************
 *
 *	name	 :	CircLList_TailInsert
 *	function :  向鏈表的尾部進行數據插入
 *	argument :	@head:目標鏈表
 *				@data:需插入的數據
 *	retval	 :  返回1成功0失敗
 *	author	 :  [email protected]
 *	date	 :  2024-4-22
 * 	note	 :	None
 *
 * *****************************************************************/

bool CircLList_TailInsert(CircLList_t *Head, DataType_t data)
{
	// 備份頭節點
	CircLList_t *Phead = Head;
	// 1.創建新的結點,並對新結點進行初始化
	CircLList_t *New = CircLList_NewNode(data);
	if (NULL == New)
	{
		printf("can not insert new node\n");
		return false;
	}
	// 2.判斷鏈表是否為空,如果為空,則直接插入即可
	if (Head == Head->next)
	{
		Head->next = New;
		New->next = New;
		return true;
	}
	// 3.如果鏈表為非空,則把新結點插入到鏈表的頭部
	while (Phead->next)
	{
		Phead = Phead->next;
		if (Phead->next == Head->next)
		{
			break;
		}
	}
	Phead->next = New;		// 尾結點指向新的尾節點
	New->next = Head->next; // 新節點指向原首節點
	return true;
}

/********************************************************************
 *
 *	name	 :	CircLList_DestInsert
 *	function :  向鏈表的指定位置後進行插入
 *	argument :	@head:目標鏈表
 *				@data:需插入的數據
 *				@dest:插入位置
 *	retval	 :  返回1成功0失敗
 *	author	 :  [email protected]
 *	date	 :  2024-4-22
 * 	note	 :	None
 *
 * *****************************************************************/

bool CircLList_DestInsert(CircLList_t *Head, DataType_t destval, DataType_t data)
{
	// 備份首節點
	CircLList_t *Phead = Head->next;
	// 1.創建新的結點,並對新結點進行初始化
	CircLList_t *New = CircLList_NewNode(data);
	if (NULL == New)
	{
		printf("can not insert new node\n");
		return false;
	}
	// 2.判斷鏈表是否為空,如果為空,則直接插入即可
	if (Head == Head->next)
	{
		Head->next = New;
		New->next = New;
		return true;
	}
	// 目標數據在頭部
	if (destval == Phead->data)
	{
		CircLList_HeadInsert(Head, data);
		return true;
	}
	// 找目標數據
	CircLList_t *P = NULL; // 定義變數保存找的目標數據的節點地址
	while (Head->next != Phead->next)
	{
		Phead = Phead->next;
		if (destval == Phead->data)
		{
			P = Phead;
			break;
		}
	}
	// 找不到目標數據
	if (NULL == P)
	{
		perror("The target data cannot be found\n");
		return false;
	}
	// 目標數據在尾部
	if (Head->next == P->next)
	{
		CircLList_TailInsert(Head, data);
	}
	// 節點在中間開始插入
	else
	{
		New->next = Phead->next;
		Phead->next = New;
	}
	return true;
}
​```

三種刪除方式

刪除鏈表頭部的節點

image

鏈表尾部的節點

image

刪除鏈表中指定的數據節點

image

代碼

/********************************************************************
 *
 *	name	 :	CircLList_HeadDel
 *	function :  頭刪
 *	argument :	@head:目標鏈表
 *				@data:需刪除的數據
 *
 *	retval	 :  返回1成功0失敗
 *	author	 :  [email protected]
 *	date	 :  2024-4-22
 * 	note	 :	None
 *
 * *****************************************************************/

bool CircLList_HeadDel(CircLList_t *Head)
{
	// 備份首節點地址
	CircLList_t *Phead = Head;
	// 備份頭節點地址
	CircLList_t *Temp = Head->next;
	// 1.判斷鏈表是否為空,如果為空
	if (Head == Head->next)
	{
		perror("Linked lists have no data\n");
		return false;
	}
	// 鏈表只有一首個節點
	if (Head->next == Head->next->next)
	{
		Temp->next = NULL;
		Head->next = Head;
		free(Temp);
		return true;
	}
	// 遍歷到尾結點
	while (Phead->next)
	{
		Phead = Phead->next;
		if (Head->next == Phead->next)
		{
			break;
		}
	}
	Phead->next = Head->next->next; // 尾結點指向原首節點的後繼
	Head->next = Phead->next;		// 頭節點指向新的首節點
	Temp->next = NULL;				// 原首節點指針域初始化
	free(Temp);
	return true;
}

/********************************************************************
 *
 *	name	 :	CircLList_TailDel
 *	function :  尾刪
 *	argument :	@head:目標鏈表
 *				@data:需刪除的數據
 *
 *	retval	 :  返回1成功0失敗
 *	author	 :  [email protected]
 *	date	 :  2024-4-22
 * 	note	 :	None
 *
 * *****************************************************************/
bool CircLList_TailDel(CircLList_t *Head)
{
	// 備份首節點地址
	CircLList_t *Phead = Head;
	// 備份頭節點地址
	CircLList_t *Temp = Head->next;
	// 1.判斷鏈表是否為空,如果為空
	if (Head == Head->next)
	{
		perror("Linked lists have no data\n");
		return false;
	}
	// 鏈表只有一首個節點
	if (Head->next == Head->next->next)
	{
		Temp->next = NULL;
		Head->next = Head;
		free(Temp);
		return true;
	}
	// 遍歷到尾結點
	while (Phead->next)
	{

		if (Head->next == Temp->next)
		{
			break;
		}
		Phead = Temp; // 記錄尾節點前驅
		Temp = Temp->next;
	}
	Temp->next = NULL;		  // 原尾結點指向首節點
	Phead->next = Head->next; // 尾結點的指針域重置
	free(Temp);				  // 釋放堆空間
	return true;
}
/********************************************************************
 *
 *	name	 :	CircLList_Del
 *	function :  中刪
 *	argument :	@head:目標鏈表
 *				@data:需刪除的數據
 *
 *	retval	 :  返回1成功0失敗
 *	author	 :  [email protected]
 *	date	 :  2024-4-22
 * 	note	 :
 *
 * *****************************************************************/
bool CircLList_Del(CircLList_t *Head, DataType_t data)
{
	// 備份首節點地址
	CircLList_t *Phead = Head;
	// 備份頭節點地址
	CircLList_t *Temp = Head->next;
	// 1.判斷鏈表是否為空,如果為空
	if (Head == Head->next)
	{
		perror("Linked lists have no data\n");
		return false;
	}
	// 刪除的節點在頭
	if (data == Head->next->data)
	{
		CircLList_HeadDel(Head);
		return true;
	}
	// 遍歷到尾結點
	CircLList_t *P = NULL; // 定義變數保存找的目標數據的節點地址
	while (Temp->next)
	{
		Temp = Temp->next;
		Phead = Phead->next; // 記錄尾節點前驅
		if (data == Temp->data)
		{
			P = Temp;
			break;
		}
	}
	// 找不到目標數據
	if (NULL == P)
	{
		perror("The target data cannot be found\n");
		return false;
	}
	// 目標數據在尾部
	if (Head->next == Phead->next)
	{
		CircLList_TailDel(Head);
	}
	else
	{
		Phead->next = Temp->next; // 刪除節點的前驅指向刪除節點的後繼
		Temp->next = NULL;		  // 刪除節點的指針域重置
		free(Temp);				  // 釋放堆空間
	}
	return true;
}
​```

遍歷鏈表

/********************************************************************
 *
 *	name	 :	CircLList_Print
 *	function :  遍歷鏈表
 *	argument :	@head:目標鏈表
 *
 *
 *	retval	 :  none
 *	author	 :  [email protected]
 *	date	 :  2024-4-22
 * 	note	 :	None
 *
 * *****************************************************************/
void CircLList_Print(CircLList_t *Head)
{
	// 對鏈表的頭文件的地址進行備份
	CircLList_t *Phead = Head;
	// 首結點
	while (Phead->next)
	{
		// 把頭的直接後繼作為新的頭結點
		Phead = Phead->next;

		// 輸出頭結點的直接後繼的數據域
		printf("data = %d\n", Phead->data);
		if (Phead->next == Head->next)
		{
			break;
		}
	}
}
​```

驗證程式

int main(int argc, char const *argv[])
{
	// 1.創建順序表
	CircLList_t *Manager = CircLList_Create();

	// 2.向順序表中的尾部插入新元素
	CircLList_TailInsert(Manager, 5);
	CircLList_TailInsert(Manager, 2);
	CircLList_TailInsert(Manager, 1);
	CircLList_TailInsert(Manager, 4);
	CircLList_TailInsert(Manager, 6);
	// 3.遍歷順序表
	CircLList_Print(Manager); // -- 5 2 1 4 6
	printf("\n");
	// 4.向順序表中的頭部插入新元素
	CircLList_HeadInsert(Manager, 9);
	CircLList_HeadInsert(Manager, 7);
	CircLList_HeadInsert(Manager, 8);
	CircLList_HeadInsert(Manager, 0);
	CircLList_HeadInsert(Manager, 10);
	// cha
	CircLList_DestInsert(Manager, 8, 0);
	// 5.遍歷順序表
	CircLList_Print(Manager); // --10 0 8 0 7 9 5 2 1 4 6
	printf("\n");

	// 頭刪除
	CircLList_HeadDel(Manager);
	// 遍歷順序表
	CircLList_Print(Manager); // --0 8 0 7 9 5 2 1 4 6
	printf("\n");
	// 尾刪除
	CircLList_TailDel(Manager);
	// 遍歷順序表
	CircLList_Print(Manager); // --0 8 0 7 9 5 2 1 4
	printf("\n");
	// 刪除順序表的元素
	CircLList_Del(Manager, 2);
	// 遍歷順序表
	CircLList_Print(Manager); // --0 8 7 9 5 1 4 6
	printf("\n");
	return 0;
	return 0;
}
​```

輸出結果
data = 5
data = 2
data = 1
data = 4
data = 6

data = 10
data = 0
data = 8
data = 0
data = 7
data = 9
data = 5
data = 2
data = 1
data = 4
data = 6

data = 0
data = 8
data = 0
data = 7
data = 9
data = 5
data = 2
data = 1
data = 4
data = 6

data = 0
data = 8
data = 0
data = 7
data = 9
data = 5
data = 2
data = 1
data = 4

data = 0
data = 8
data = 0
data = 7
data = 9
data = 5
data = 1
data = 4


您的分享是我們最大的動力!

-Advertisement-
Play Games
更多相關文章
  • 大家好,我是 Java陳序員。 我們無論是日常生活還是辦公,常常需要使用一些工具軟體來記錄筆記、代辦事項等。 今天,給大家介紹一款支持私有化部署、支持多端使用的筆記軟體。 關註微信公眾號:【Java陳序員】,獲取開源項目分享、AI副業分享、超200本經典電腦電子書籍等。 項目介紹 Blossom ...
  • 手寫 SpringMVC 底層機制 前景提要:實現的是SpringMVC核心機制 對一些細枝末節的代碼做了簡化,比如字元串的處理... 完成哪些機制 機制一: 通過@RequestMapping ,可以標記一個方法,編寫路徑url,瀏覽器就能通過url完成調用 機制二: 進行依賴註入,使之不需要傳統 ...
  • SpringMVC筆記 SpringMVC介紹 基本介紹 SpringMVC 是WEB 層框架, 接管了Web 層組件, 支持MVC 的開發模式/開發架構 SpringMVC 通過註解,讓POJO 成為控制器,不需要繼承類或者實現介面 SpringMVC 採用低耦合的組件設計方式,具有更好擴展和靈活 ...
  • 1. 安裝 & 配置 & 啟動 MySQL現在的版本主要分為: 5.x 版本,現在互聯網企業中的主流版本,包括:頭條、美圖、百度、騰訊等互聯網公司主流的版本。 8.x 版本,新增了一些了視窗函數、持久化配置、隱藏索引等其他功能。 所以,我們課程會以常用大版本中最新的版本為例來講解,即:5.7.31 ...
  • 本系列深入分析編譯器對於C++虛函數的底層實現,最後分析C++在多態的情況下的性能是否有受影響,多態究竟有多大的性能損失。 ...
  • 作者:張富春(ahfuzhang),轉載時請註明作者和引用鏈接,謝謝! cnblogs博客 zhihu Github 公眾號:一本正經的瞎扯 代碼請看:https://github.com/ahfuzhang/cowmap 有這樣一種場景:數據量不多的map,在使用中讀極多寫極少。為了在這種場景下做 ...
  • 前言 整理這個官方翻譯的系列,原因是網上大部分的 tomcat 版本比較舊,此版本為 v11 最新的版本。 開源項目 從零手寫實現 tomcat minicat 別稱【嗅虎】心有猛虎,輕嗅薔薇。 系列文章 web server apache tomcat11-01-官方文檔入門介紹 web serv ...
  • /******************************************************************************************************** * * * 設計單向迴圈鏈表的介面 * * * * Copyright (c) 2023 ...
一周排行
    -Advertisement-
    Play Games
  • 移動開發(一):使用.NET MAUI開發第一個安卓APP 對於工作多年的C#程式員來說,近來想嘗試開發一款安卓APP,考慮了很久最終選擇使用.NET MAUI這個微軟官方的框架來嘗試體驗開發安卓APP,畢竟是使用Visual Studio開發工具,使用起來也比較的順手,結合微軟官方的教程進行了安卓 ...
  • 前言 QuestPDF 是一個開源 .NET 庫,用於生成 PDF 文檔。使用了C# Fluent API方式可簡化開發、減少錯誤並提高工作效率。利用它可以輕鬆生成 PDF 報告、發票、導出文件等。 項目介紹 QuestPDF 是一個革命性的開源 .NET 庫,它徹底改變了我們生成 PDF 文檔的方 ...
  • 項目地址 項目後端地址: https://github.com/ZyPLJ/ZYTteeHole 項目前端頁面地址: ZyPLJ/TreeHoleVue (github.com) https://github.com/ZyPLJ/TreeHoleVue 目前項目測試訪問地址: http://tree ...
  • 話不多說,直接開乾 一.下載 1.官方鏈接下載: https://www.microsoft.com/zh-cn/sql-server/sql-server-downloads 2.在下載目錄中找到下麵這個小的安裝包 SQL2022-SSEI-Dev.exe,運行開始下載SQL server; 二. ...
  • 前言 隨著物聯網(IoT)技術的迅猛發展,MQTT(消息隊列遙測傳輸)協議憑藉其輕量級和高效性,已成為眾多物聯網應用的首選通信標準。 MQTTnet 作為一個高性能的 .NET 開源庫,為 .NET 平臺上的 MQTT 客戶端與伺服器開發提供了強大的支持。 本文將全面介紹 MQTTnet 的核心功能 ...
  • Serilog支持多種接收器用於日誌存儲,增強器用於添加屬性,LogContext管理動態屬性,支持多種輸出格式包括純文本、JSON及ExpressionTemplate。還提供了自定義格式化選項,適用於不同需求。 ...
  • 目錄簡介獲取 HTML 文檔解析 HTML 文檔測試參考文章 簡介 動態內容網站使用 JavaScript 腳本動態檢索和渲染數據,爬取信息時需要模擬瀏覽器行為,否則獲取到的源碼基本是空的。 本文使用的爬取步驟如下: 使用 Selenium 獲取渲染後的 HTML 文檔 使用 HtmlAgility ...
  • 1.前言 什麼是熱更新 游戲或者軟體更新時,無需重新下載客戶端進行安裝,而是在應用程式啟動的情況下,在內部進行資源或者代碼更新 Unity目前常用熱更新解決方案 HybridCLR,Xlua,ILRuntime等 Unity目前常用資源管理解決方案 AssetBundles,Addressable, ...
  • 本文章主要是在C# ASP.NET Core Web API框架實現向手機發送驗證碼簡訊功能。這裡我選擇是一個互億無線簡訊驗證碼平臺,其實像阿裡雲,騰訊雲上面也可以。 首先我們先去 互億無線 https://www.ihuyi.com/api/sms.html 去註冊一個賬號 註冊完成賬號後,它會送 ...
  • 通過以下方式可以高效,並保證數據同步的可靠性 1.API設計 使用RESTful設計,確保API端點明確,並使用適當的HTTP方法(如POST用於創建,PUT用於更新)。 設計清晰的請求和響應模型,以確保客戶端能夠理解預期格式。 2.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...