C語(yǔ)言之單向鏈表詳解及實(shí)例代碼
1,單向鏈簡(jiǎn)潔。
單向鏈表(單鏈表)是鏈表的一種,其特點(diǎn)是鏈表的鏈接方向是單向的,對(duì)鏈表的訪問(wèn)要通過(guò)順序讀取從頭部開(kāi)始;鏈表是使用指針進(jìn)行構(gòu)造的列表;又稱為結(jié)點(diǎn)列表,因?yàn)殒湵硎怯梢粋€(gè)個(gè)結(jié)點(diǎn)組裝起來(lái)的;其中每個(gè)結(jié)點(diǎn)都有指針成員變量指列表中的下一個(gè)結(jié)點(diǎn);列表是由結(jié)點(diǎn)構(gòu)成,由head指針指向第一個(gè)成為表頭的結(jié)點(diǎn)而終止于最后一個(gè)指向nuLL的指針;
2,例子要求:
根據(jù)示例代碼中的例子,完成單向鏈表(single linked list)中的以字符串為數(shù)據(jù)的鏈表的插入、刪除以及查找,并支持單向鏈表的反轉(zhuǎn);
3,代碼實(shí)現(xiàn)。
#include <stdio.h> #include <math.h> #include <cstring> #include <memory.h> #include <malloc.h> //節(jié)點(diǎn)的定義 typedef struct Node { void *data; //數(shù)據(jù)域 //鏈域 struct Node *next; } NodeStruct, *pNode; pNode head = NULL; typedef char (*pCompareFunc)(void *a, void *b); typedef void* (*pChar)(void *p); // 字符串判斷 int str_compare(void *a, void *b) { char *pa = (char*)a; char *pb = (char*)b; return strcmp(pa , pb); } // 分配一個(gè)節(jié)點(diǎn) pNode allocate_node(void *data, pChar char_func) { pNode node = allocate(); node->data = char_func(data); return node; } // 創(chuàng)建節(jié)點(diǎn) pNode allocate() { void *p = malloc(sizeof(NodeStruct)); pNode node = (pNode)p; node->next = NULL; node->data = NULL; return node; } // 添加一個(gè)節(jié)點(diǎn) void insertNode(pNode node){ if (head == null){ head=node; } else { node->next = head; head = node; } } void* char_char(void *p) { char* pa = (char*)malloc(sizeof(char)); memcpy(pa, p, sizeof(char)); return pa; } // 初始化節(jié)點(diǎn) pNode allocate_node(void *data, pChar char_func) { pNode node = allocate(); node->data = char_func(data); return node; } // 釋放資源 void free_list(pNode node) { pNode next = node; while (next != NULL) { if (next->data != NULL) free(next->data); pNode temp = next; next = next->next; free(temp); } } // 1.1 添加一個(gè)節(jié)點(diǎn) void insert(pNode node) { if (head == NULL) head = node; else { node->next = head; head = node; } } //1.2查找 int str_search(void* data,pCompareFunc compare){ pNode next = head; pNode prev = NULL; while (next != NULL ) { if (compare(data, next->data) == 0) { // 如果查找到了,就退出返回1 return 1; break; } prev = next; next = next->next; } // 如果一直查找不到,就返回0 return 0; } // 1.3刪除節(jié)點(diǎn) void remove(void* data,pCompareFunc compare) { pNode next = head; pNode prev = NULL; while (next != NULL) { if (compare(data, next->data) == 0) { if (prev == NULL) { head = next->next; next->next = NULL; free_list(next); } else { prev->next = next->next; next->next = NULL; free_list(next); } break; } prev = next; next = next->next; } } //1.4反轉(zhuǎn) void invert_order() { node *This,*prev; p=head.next; This=NULL; while(p) { prev=This; This=p; p=p->next; This->next=prev; } head.next=This; } void main(){ // 1單向鏈表 char a1[] = 'aaa1'; char a2[] = 'aaa2'; char a3[] = 'aaa3'; // 1.1添加 insertNode(allocate_node(a1, init_char)); insertNode(allocate_node(a2, init_char)); insertNode(allocate_node(a3, init_char)); // 1.2查找 int flag = 0; flag = str_search(&a2,str_compare); // 1.3刪除 remove(&a2,str_compare); // 1.4反轉(zhuǎn) invert_order(); }
以上就是對(duì) C語(yǔ)言單向聯(lián)表的資料整理,后續(xù)繼續(xù)補(bǔ)充相關(guān)資料,謝謝大家對(duì)本站的支持!
- C語(yǔ)言實(shí)現(xiàn)帶頭雙向環(huán)形鏈表
- C語(yǔ)言超詳細(xì)講解數(shù)據(jù)結(jié)構(gòu)中雙向帶頭循環(huán)鏈表
- C語(yǔ)言實(shí)現(xiàn)帶頭雙向循環(huán)鏈表
- C語(yǔ)言數(shù)據(jù)結(jié)構(gòu)超詳細(xì)講解單向鏈表
- C語(yǔ)言數(shù)據(jù)結(jié)構(gòu)之單向鏈表詳解分析
- C語(yǔ)言實(shí)現(xiàn)無(wú)頭單向鏈表的示例代碼
- C語(yǔ)言單向鏈表的表示與實(shí)現(xiàn)實(shí)例詳解
- C語(yǔ)言實(shí)例真題講解數(shù)據(jù)結(jié)構(gòu)中單向環(huán)形鏈表
相關(guān)文章
C指針原理教程之語(yǔ)法樹(shù)及其實(shí)現(xiàn)
本文給大家分享的是如何使用C語(yǔ)言的指針原來(lái)來(lái)實(shí)現(xiàn)語(yǔ)法樹(shù),并給大家提供了詳細(xì)的實(shí)例代碼,希望大家能夠喜歡2019-02-02C++?高精度乘法運(yùn)算的實(shí)現(xiàn)
本文主要介紹了C++?高精度乘法運(yùn)算的實(shí)現(xiàn),文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧2023-01-01Linux?C/C++實(shí)現(xiàn)網(wǎng)絡(luò)流量分析工具
網(wǎng)絡(luò)流量分析的原理基于對(duì)數(shù)據(jù)包的捕獲、解析和統(tǒng)計(jì)分析,通過(guò)對(duì)網(wǎng)絡(luò)流量的細(xì)致觀察和分析,幫助管理員了解和優(yōu)化網(wǎng)絡(luò)的性能,本文將通過(guò)C++實(shí)現(xiàn)網(wǎng)絡(luò)流量分析工具,有需要的可以參考下2023-10-10C++中putchar與getchar函數(shù)的細(xì)節(jié)及運(yùn)用
C語(yǔ)言提供putchar函數(shù),用于給終端輸出一個(gè)字符;getchar函數(shù),可以從終端接收用戶輸入的一個(gè)字符,本文給大家分享C++中putchar與getchar函數(shù)的細(xì)節(jié)及運(yùn)用,感興趣的朋友跟隨小編一起看看吧2021-07-07C++標(biāo)準(zhǔn)庫(kù)bitset類型的簡(jiǎn)單使用方法介紹
這篇文章主要介紹了C++標(biāo)準(zhǔn)庫(kù)bitset類型的簡(jiǎn)單使用方法,需要的朋友可以參考下2017-07-07