數(shù)據(jù)結(jié)構(gòu)與算法:單向鏈表實(shí)現(xiàn)與封裝
概述
單向鏈表分為單向有頭鏈表和單線無頭鏈表,本文針對單向有頭鏈表使用C語言來實(shí)現(xiàn)并進(jìn)行封裝。
實(shí)現(xiàn)
list_head.h文件
#ifndef _LIST_H_ #define _LIST_H_ typedef int datatype; #define SUCC #define MALLOC_FAIL 1 #define NOHEADNODE 2 #define INDEXFAIL 3 #define LIST_EMPTY 4 #define LIST_NOEMPTY 5 #define FAIL 10 typedef struct List_Node { datatype data; struct List_Node* pNext; }list; list*list_create(); int list_insert_at(list* pHead, int i, datatype* pData); int list_order_insert(list* pHead, datatype* pData); int list_delete_at(list* pHead, int index); int list_delete(list* pHead, datatype* pData); int list_isempty(list* pHead); void list_display(list* pHead); void list_destory(list* pHead); #endif // !_LIST_H_
list_head.c文件
/******************************************************** Copyright (C), 2016-2017, FileName: list Author: woniu201 Description:單向有頭鏈表使用 ********************************************************/ #include <stdio.h> #include "list_head.h" /************************************ @ Brief: 創(chuàng)建鏈表頭 @ Author: woniu201 @ Return: ************************************/ list* list_create() { list* pNode = (list *)malloc(sizeof(list)); memset(pNode, 0, sizeof(list)); if (pNode == NULL) { return MALLOC_FAIL; } pNode->pNext = NULL; return pNode; } /************************************ @ Brief: 按位置插入節(jié)點(diǎn) @ Author: woniu201 @ Return: ************************************/ int list_insert_at(list* pHead, int i, datatype* pData) { int j = 0; if (pHead == NULL) { return NOHEADNODE; } list* pNode = pHead; if (i<0) { return INDEXFAIL; } while (j< i && pNode !=NULL) { pNode = pNode->pNext; j++; } if (pNode == NULL) { return INDEXFAIL; } else { list* newNode = (list*)malloc(sizeof(list)); if (newNode ==NULL) { return MALLOC_FAIL; } memset(newNode, 0, sizeof(list)); newNode->data = *pData; pNode->pNext = newNode; } return SUCC; } /************************************ @ Brief: 按順序插入節(jié)點(diǎn) @ Author: woniu201 @ Return: ************************************/ int list_order_insert(list* pHead, datatype* pData) { if (pHead == NULL) { return NOHEADNODE; } list* pNewNode = (list*)malloc(sizeof(list)); if (pNewNode == NULL) { return MALLOC_FAIL; } memset(pNewNode, 0, sizeof(list)); pNewNode->data = *pData; list* pNode = pHead; if (pNode->pNext == NULL) { pNode->pNext = pNewNode; return SUCC; } while (pNode->pNext != NULL && pNode->pNext->data < *pData) { pNode = pNode->pNext; } if (pNode->pNext) { pNewNode->pNext = pNode->pNext; pNode->pNext = pNewNode; } else { pNode->pNext = pNewNode; } return SUCC; } /************************************ @ Brief: 按位置刪除節(jié)點(diǎn) @ Author: woniu201 @ Return: ************************************/ int list_delete_at(list* pHead, int index) { int j = 0; if (pHead == NULL) { return NOHEADNODE; } if (index < 0) { return INDEXFAIL; } list* pCur = pHead; list* pNode = pHead; while (pCur->pNext) { pNode = pCur; pCur = pCur->pNext; if (index == j) { break; } j++; } if (j< index) { printf("不存在該節(jié)點(diǎn)\n"); return INDEXFAIL; } else { if (pCur->pNext == NULL) { pNode->pNext = NULL; } else { pNode->pNext = pCur->pNext; } free(pCur); pCur = NULL; } return SUCC; } /************************************ @ Brief: 按值刪除節(jié)點(diǎn) @ Author: woniu201 @ Return: ************************************/ int list_delete(list* pHead, datatype* pData) { if (pHead == NULL) { return NOHEADNODE; } list* pCur = pHead; list* pNode = pHead; int bFind = 0; while (pCur->pNext) { pNode = pCur; pCur = pCur->pNext; if (pCur->data == *pData) { bFind = 1; break; } } if (!bFind) { printf("不存在該節(jié)點(diǎn)\n"); return INDEXFAIL; } else { if (pCur->pNext == NULL) { pNode->pNext = NULL; } else { pNode->pNext = pCur->pNext; } free(pCur); pCur = NULL; } return SUCC; } /************************************ @ Brief: 判斷鏈表是否為空 @ Author: woniu201 @ Return: ************************************/ int list_isempty(list* pHead) { if (pHead->pNext == NULL) { return LIST_EMPTY; } else { return LIST_NOEMPTY; } } /************************************ @ Brief: 遍歷打印鏈表 @ Author: woniu201 @ Return: ************************************/ void list_display(list* pHead) { if (list_isempty(pHead) == LIST_EMPTY) { printf("鏈表為空\n"); return FAIL; } list* pNode = pHead->pNext; while (pNode) { printf("%d\n", pNode->data); pNode = pNode->pNext; } } /************************************ @ Brief: 釋放鏈表內(nèi)存 @ Author: woniu201 @ Return: ************************************/ void list_destory(list* pHead) { list* pCur = pHead; list* pNext = pHead->pNext; while (pNext) { pNext = pNext->pNext; free(pCur); pCur = NULL; pCur = pNext; } }
main.c 測試
#include <stdio.h> #include "list_head.h" int main() { list* pHead = list_create(); int data1 = 1; int data2 = 3; int data3 = 2; // int ret = list_insert_at(pHead,0, &data1); // ret = list_insert_at(pHead, 1, &data2); // if (ret == INDEXFAIL) // { // printf("添加索引位置錯(cuò)誤\n"); // } list_order_insert(pHead, &data2); list_order_insert(pHead, &data1); list_order_insert(pHead, &data3); list_delete_at(pHead, 3); int deleteData = 1; list_delete(pHead, &deleteData); list_display(pHead); list_destory(pHead); return 1; }
總結(jié)
以上就是這篇文章的全部內(nèi)容了,希望本文的內(nèi)容對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,謝謝大家對我們的支持。如果你想了解更多相關(guān)內(nèi)容請查看下面相關(guān)鏈接
上一篇:cocos2dx實(shí)現(xiàn)橡皮擦效果以及判斷是否擦除完畢
欄 目:C語言
下一篇:C++標(biāo)準(zhǔn)模板庫string類的介紹與使用講解
本文標(biāo)題:數(shù)據(jù)結(jié)構(gòu)與算法:單向鏈表實(shí)現(xiàn)與封裝
本文地址:http://mengdiqiu.com.cn/a1/Cyuyan/597.html
您可能感興趣的文章
- 01-10數(shù)據(jù)結(jié)構(gòu)課程設(shè)計(jì)- 解析最少換車次數(shù)的問題詳解
- 01-10數(shù)據(jù)結(jié)構(gòu)課程設(shè)計(jì)-用棧實(shí)現(xiàn)表達(dá)式求值的方法詳解
- 01-10使用C++實(shí)現(xiàn)全排列算法的方法詳解
- 01-10深入第K大數(shù)問題以及算法概要的詳解
- 01-10深入N皇后問題的兩個(gè)最高效算法的詳解
- 01-10用C++實(shí)現(xiàn)DBSCAN聚類算法
- 01-10深入全排列算法及其實(shí)現(xiàn)方法
- 01-10全排列算法的非遞歸實(shí)現(xiàn)與遞歸實(shí)現(xiàn)的方法(C++)
- 01-10深入理解atoi()與itoa()函數(shù)的用法
- 01-10淺談C/C++中的static與extern關(guān)鍵字的使用詳解


閱讀排行
本欄相關(guān)
- 04-02c語言函數(shù)調(diào)用后清空內(nèi)存 c語言調(diào)用
- 04-02func函數(shù)+在C語言 func函數(shù)在c語言中
- 04-02c語言的正則匹配函數(shù) c語言正則表達(dá)
- 04-02c語言用函數(shù)寫分段 用c語言表示分段
- 04-02c語言中對數(shù)函數(shù)的表達(dá)式 c語言中對
- 04-02c語言編寫函數(shù)冒泡排序 c語言冒泡排
- 04-02c語言沒有round函數(shù) round c語言
- 04-02c語言分段函數(shù)怎么求 用c語言求分段
- 04-02C語言中怎么打出三角函數(shù) c語言中怎
- 04-02c語言調(diào)用函數(shù)求fibo C語言調(diào)用函數(shù)求
隨機(jī)閱讀
- 08-05DEDE織夢data目錄下的sessions文件夾有什
- 01-10C#中split用法實(shí)例總結(jié)
- 01-11Mac OSX 打開原生自帶讀寫NTFS功能(圖文
- 08-05織夢dedecms什么時(shí)候用欄目交叉功能?
- 04-02jquery與jsp,用jquery
- 01-10delphi制作wav文件的方法
- 01-10使用C語言求解撲克牌的順子及n個(gè)骰子
- 01-10SublimeText編譯C開發(fā)環(huán)境設(shè)置
- 08-05dedecms(織夢)副欄目數(shù)量限制代碼修改
- 01-11ajax實(shí)現(xiàn)頁面的局部加載