C語言實現staque結構

来源:https://www.cnblogs.com/eternalmoonbeam/archive/2022/10/22/16815954.html
-Advertisement-
Play Games

C語言實現staque結構 1. 使用說明 staque結構以單鏈表方式實現,結合了stack與queue結構:pop_front+push_front使用方式為stack;pop_front+push_back使用方式是queue。 首尾插入和頂部彈出是運行效率最高的,此外還實現了任意位置的插入、 ...


C語言實現staque結構


 

1. 使用說明

staque結構以單鏈表方式實現,結合了stack與queue結構:pop_front+push_front使用方式為stack;pop_front+push_back使用方式是queue。

首尾插入和頂部彈出是運行效率最高的,此外還實現了任意位置的插入、移除和訪問功能。

帶有返回值的函數:返回值如果是void*類型,則NULL代表執行失敗;如果是int類型,則0為成功,-1為失敗。


 

2. 代碼實現

staque.h

 1 #ifndef __STAQUE_H
 2 #define __STAQUE_H
 3 
 4 typedef
 5 struct unidirectional_node
 6 {
 7     void* p_data;
 8     struct unidirectional_node* p_next;
 9 }STRUCT_UD_NODE,
10 * P_STRUCT_UD_NODE;
11 
12 typedef
13 struct staque
14 {
15     unsigned int count;
16     P_STRUCT_UD_NODE p_first;
17     P_STRUCT_UD_NODE p_last;
18 }STRUCT_STAQUE,
19 * P_STRUCT_STAQUE;
20 
21 P_STRUCT_STAQUE
22 f_staque_construct(void);
23 
24 void
25 f_staque_push_back(P_STRUCT_STAQUE const p_stq, void* const p_data);
26 
27 void
28 f_staque_push_front(P_STRUCT_STAQUE const p_stq, void* const p_data);
29 
30 void*
31 f_staque_pop_front(P_STRUCT_STAQUE const p_stq);
32 
33 int
34 f_staque_data_insert(P_STRUCT_STAQUE const p_stq, void* const p_data, const unsigned int index);
35 
36 void*
37 f_staque_data_remove(P_STRUCT_STAQUE const p_stq, const unsigned int index);
38 
39 void*
40 f_staque_data_access(P_STRUCT_STAQUE const p_stq, const unsigned int index);
41 
42 int
43 f_staque_data_index(P_STRUCT_STAQUE const p_stq, void* const p_data, unsigned int* const p_index);
44 
45 void
46 f_staque_destroy(P_STRUCT_STAQUE const p_stq);
47 
48 #endif // !__STAQUE_H
head

 

staque.c

  1 #include "staque.h"
  2 #include <stdlib.h>
  3 
  4 #pragma warning(disable:6011)
  5 
  6 P_STRUCT_STAQUE f_staque_construct(void)
  7 {
  8     P_STRUCT_STAQUE p_ret_vec = (P_STRUCT_STAQUE)malloc(sizeof(STRUCT_STAQUE));
  9     p_ret_vec->count = 0;
 10     p_ret_vec->p_first = NULL;
 11     p_ret_vec->p_last = NULL;
 12     return p_ret_vec;
 13 }
 14 
 15 void innf_add_first_node(P_STRUCT_STAQUE const p_stq, void* const p_data)
 16 {
 17     p_stq->p_first = (P_STRUCT_UD_NODE)malloc(sizeof(STRUCT_UD_NODE));
 18     p_stq->p_first->p_data = p_data;
 19     p_stq->p_first->p_next = NULL;
 20     p_stq->p_last = p_stq->p_first;
 21     p_stq->count = 1;
 22 }
 23 
 24 void* innf_remove_last_node(P_STRUCT_STAQUE const p_stq)
 25 {
 26     void* p_ret_data = p_stq->p_first->p_data;
 27     free(p_stq->p_first);
 28     p_stq->p_first = NULL;
 29     p_stq->p_last = NULL;
 30     p_stq->count = 0;
 31     return p_ret_data;
 32 }
 33 
 34 void f_staque_push_back(P_STRUCT_STAQUE const p_stq, void* const p_data)
 35 {
 36     switch (p_stq->count)
 37     {
 38     case 0:
 39         innf_add_first_node(p_stq, p_data);
 40         return;
 41     }
 42     P_STRUCT_UD_NODE p_node = (P_STRUCT_UD_NODE)malloc(sizeof(STRUCT_UD_NODE));
 43     p_node->p_data = p_data;
 44     p_node->p_next = NULL;
 45     p_stq->p_last->p_next = p_node;
 46     p_stq->p_last = p_node;
 47     p_stq->count++;
 48 }
 49 
 50 void f_staque_push_front(P_STRUCT_STAQUE const p_stq, void* const p_data)
 51 {
 52     switch (p_stq->count) {
 53     case 0:
 54         innf_add_first_node(p_stq, p_data);
 55         return;
 56     }
 57     P_STRUCT_UD_NODE p_node = (P_STRUCT_UD_NODE)malloc(sizeof(STRUCT_UD_NODE));
 58     p_node->p_data = p_data;
 59     p_node->p_next = p_stq->p_first;
 60     p_stq->p_first = p_node;
 61     p_stq->count++;
 62 }
 63 
 64 void* f_staque_pop_front(P_STRUCT_STAQUE const p_stq)
 65 {
 66     switch (p_stq->count) {
 67     case 0:
 68         return NULL;
 69     case 1:
 70         return innf_remove_last_node(p_stq);
 71     }
 72     void* p_ret_data = p_stq->p_first->p_data;
 73     P_STRUCT_UD_NODE p_node = p_stq->p_first->p_next;
 74     free(p_stq->p_first);
 75     p_stq->p_first = p_node;
 76     p_stq->count--;
 77     return p_ret_data;
 78 }
 79 
 80 int f_staque_data_insert(P_STRUCT_STAQUE const p_stq, void* const p_data, const unsigned int index)
 81 {
 82     switch (index) {
 83     case 0:
 84         f_staque_push_front(p_stq, p_data);
 85         return 0;
 86     }
 87     if (index == p_stq->count) {
 88         f_staque_push_back(p_stq, p_data);
 89         return 0;
 90     }
 91     else if (index > p_stq->count) {
 92         return -1;
 93     }
 94     P_STRUCT_UD_NODE p_node = p_stq->p_first;
 95     for (unsigned int i = 0 ; i < index - 1; i++) {
 96         p_node = p_node->p_next;
 97     }
 98     P_STRUCT_UD_NODE p_node_next = p_node->p_next;
 99     p_node->p_next = (P_STRUCT_UD_NODE)malloc(sizeof(STRUCT_UD_NODE));
100     p_node->p_next->p_data = p_data;
101     p_node->p_next->p_next = p_node_next;
102     p_stq->count++;
103     return 0;
104 }
105 
106 void* f_staque_data_remove(P_STRUCT_STAQUE const p_stq, const unsigned int index)
107 {
108     switch (p_stq->count) {
109     case 0:
110         return NULL;
111     }
112     switch (index) {
113     case 0:
114         return f_staque_pop_front(p_stq);
115     }
116     if (index >= p_stq->count) {
117         return NULL;
118     }
119     P_STRUCT_UD_NODE p_node = p_stq->p_first;
120     for (unsigned int i = 0; i < index - 1; i++) {
121         p_node = p_node->p_next;
122     }
123     P_STRUCT_UD_NODE p_node_next = p_node->p_next->p_next;
124     void* p_ret_data = p_node->p_next->p_data;
125     free(p_node->p_next);
126     p_node->p_next = p_node_next;
127     p_stq->count--;
128     return p_ret_data;
129 }
130 
131 void* f_staque_data_access(P_STRUCT_STAQUE const p_stq, const unsigned int index)
132 {
133     switch (p_stq->count) {
134     case 0:
135         return NULL;
136     }
137     if (index >= p_stq->count) {
138         return NULL;
139     }
140     P_STRUCT_UD_NODE p_node = p_stq->p_first;
141     for (unsigned int i = 0; i < index; i++) {
142         p_node = p_node->p_next;
143     }
144     return p_node->p_data;
145 }
146 
147 int f_staque_data_index(P_STRUCT_STAQUE const p_stq, void* const p_data, unsigned int* const p_index)
148 {
149     P_STRUCT_UD_NODE p_node = p_stq->p_first;
150     for (unsigned int i = 0; i < p_stq->count; i++) {
151         if (p_node->p_data == p_data) {
152             *p_index = i;
153             return 0;
154         }
155         p_node = p_node->p_next;
156     }
157     return -1;
158 }
159 
160 void f_staque_destroy(P_STRUCT_STAQUE const p_stq)
161 {
162     if (p_stq == NULL) {
163         return;
164     }
165     while (p_stq->count != 0) {
166         f_staque_pop_front(p_stq);
167     }
168     free(p_stq);
169 }
code

 


 

3. 代碼測試

source.c

 1 #include "staque.h"
 2 #include <stdio.h>
 3 #include <stdlib.h>
 4 
 5 #pragma warning(disable:6011)
 6 
 7 int main(int argc, char** argv)
 8 {
 9     P_STRUCT_STAQUE p_stq = f_staque_construct();
10     const unsigned int arr_size = 10;
11     int* arr = (int*)malloc(sizeof(int) * arr_size);
12     printf("arr: ");
13     for (unsigned int i = 0; i < arr_size; i++) {
14         *(arr + i) = i * 2;
15         printf("%d ", *(arr + i));
16     }
17     printf("\nstaque push back all\n");
18     for (unsigned int i = 0; i < arr_size; i++) {
19         f_staque_push_back(p_stq, arr + i);
20     }
21     printf("access staque data\n");
22     for (unsigned int i = 0; i < p_stq->count; i++) {
23         printf("%d ", *(int*)f_staque_data_access(p_stq, i));
24     }
25     printf("\nstaque push front all\n");
26     for (unsigned int i = 0; i < arr_size; i++) {
27         f_staque_push_front(p_stq, arr + i);
28     }
29     for (P_STRUCT_UD_NODE p_node = p_stq->p_first; p_node != NULL; p_node = p_node->p_next) {
30         printf("%d ", *(int*)p_node->p_data);
31     }
32     printf("\ninsert to half\n");
33     f_staque_data_insert(p_stq, &p_stq->count, p_stq->count / 2);
34     for (P_STRUCT_UD_NODE p_node = p_stq->p_first; p_node != NULL; p_node = p_node->p_next) {
35         printf("%d ", *(int*)p_node->p_data);
36     }
37     unsigned int index = 0;
38     f_staque_data_index(p_stq, &p_stq->count, &index);
39     printf("\nget index of that node: %d", index);
40     printf("\nremove half: %d\n", *(int*)f_staque_data_remove(p_stq, p_stq->count / 2));
41     for (P_STRUCT_UD_NODE p_node = p_stq->p_first; p_node != NULL; p_node = p_node->p_next) {
42         printf("%d ", *(int*)p_node->p_data);
43     }
44     printf("\nstaque pop front all\n");
45     while (p_stq->count != 0) {
46         printf("%d ", *(int*)f_staque_pop_front(p_stq));
47     }
48     printf("\n");
49     f_staque_destroy(p_stq);
50     free(arr);
51     return 0;
52 }
test

 

運行結果:

arr: 0 2 4 6 8 10 12 14 16 18
staque push back all
access staque data
0 2 4 6 8 10 12 14 16 18
staque push front all
18 16 14 12 10 8 6 4 2 0 0 2 4 6 8 10 12 14 16 18
insert to half
18 16 14 12 10 8 6 4 2 0 21 0 2 4 6 8 10 12 14 16 18
get index of that node: 10
remove half: 20
18 16 14 12 10 8 6 4 2 0 0 2 4 6 8 10 12 14 16 18
staque pop front all
18 16 14 12 10 8 6 4 2 0 0 2 4 6 8 10 12 14 16 18


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

-Advertisement-
Play Games
更多相關文章
  • 寫在前面 Redis 是一種 NoSQL 資料庫,包含多種數據結構、支持網路、基於記憶體、可選持久性的鍵值對存儲資料庫,在我們的日常開發中會經常使用 Redis 來解決許多問題,比如排行榜、消息隊列系統、計數器 以及 緩存系統等。 在作為緩存使用時,不可避免的會遇到緩存穿透、緩存雪崩、緩存擊穿(熱點 ...
  • pandas的下載 使用命令下載: pip install pandas 或者自行下載whl文件安裝 https://www.lfd.uci.edu/~gohlke/pythonlibs/ 創建DataFrame數據 pd_data = pd.DataFrame({ "name":["小明","小紅 ...
  • 正則表達式01 5.1正則表達式的作用 正則表達式的便利 在一篇文章中,想要提取相應的字元,比如提取文章中的所有英文單詞,提取文章中的所有數字等。 傳統方法是:使用遍歷的方式,對文本中的每一個字元進行ASCII碼的對比,如果ASCII碼處於英文字元的範圍,就將其截取下來,再看後面是否有連續的字元,將 ...
  • 由於資料庫或數據集中存在大量缺失數據和空值,這時在pandas中經常用NAN代替。 pandas用標簽方法表示缺失值: 一:浮點數據類型的NaN值 二:python的None對象 其中,None是一個python對象,所以不能作為任何Numpy/pandas數組類型的缺失值,只能用於'object' ...
  • 目錄 一.OpenGL 圖像伽馬線 1.原始圖片 2.效果演示 二.OpenGL 圖像伽馬線源碼下載 三.猜你喜歡 零基礎 OpenGL ES 學習路線推薦 : OpenGL ES 學習目錄 >> OpenGL ES 基礎 零基礎 OpenGL ES 學習路線推薦 : OpenGL ES 學習目錄 ...
  • 什麼是標識符? 標識符是用來標識變數、函數、類、模塊,或者任何其他用戶自定義項目的名稱,用它來命名程式正文中的一些實體,比如函數名、變數名、類名、對象名等。如:int a1=0; const b1="hello"中 a1和b1都是標識符,不過a1是變數,也就是存儲單元的標識符,b1是數據字元串的標識 ...
  • 前言 最近學校開設了JAVA_EE課程,課上講到了struts1框架,並且需要做相關試驗。由於習慣了使用IDEA,便嘗試在IDEA上部署struts1框架。 環境 windows10 21H2 IntelliJ IDEA 2022.1.4 (Ultimate Edition) ps: 如果是在校學生 ...
  • 設計一個程式統計某班全體學生3門課的考試成績。要求先輸入學生人數,並輸入每個學生的三門成績,統計出每門課程的全班平均分及每個考生所有考試的總分。 #include<stdio.h>#include<math.h>int b,i,q,j,n,sum,avg,all;int a[20][3];//可以為 ...
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...