靜態鏈表

来源:http://www.cnblogs.com/robin-xu/archive/2016/02/04/5182136.html
-Advertisement-
Play Games

1 #include<stdio.h> 2 #include<stdlib.h> 3 4 //typedef 80 MAXSIZE; 5 #define MAXSIZE 20 6 7 typedef struct Node{ 8 int data; 9 int cursor; 10 }Node,St


  1 #include<stdio.h>
  2 #include<stdlib.h>
  3 
  4 //typedef 80 MAXSIZE;
  5 #define MAXSIZE 20
  6 
  7 typedef struct Node{
  8     int data;
  9     int cursor;
 10 }Node,StaticList[MAXSIZE];
 11 
 12 void InitialSpace(StaticList Space){
 13     int i;
 14     for(i = 0;i < MAXSIZE - 1; i++){
 15         Space[i].cursor = i + 1;
 16     }
 17     Space[MAXSIZE - 1].cursor = 0;
 18 }
 19 int Malloc_StaticList(StaticList Space){
 20     int index;
 21     index = Space[0].cursor;
 22     if(index){
 23         Space[0].cursor = Space[index].cursor;
 24         return index;
 25     }
 26     else{
 27         printf("Space Full, Failed!\n");
 28         exit(1);
 29     }
 30 }
 31 void Free_StaticList(StaticList Space,int index){
 32     Space[index].data = 0;
 33     Space[index].cursor = Space[0].cursor;
 34     Space[0].cursor = index;
 35 }
 36 int InitialStaticList(StaticList Space){
 37     int i;
 38     i = Malloc_StaticList(Space);
 39     Space[i].cursor = 0;
 40     return i;
 41 }
 42 void ClearStaticList(StaticList Space,int n_List){
 43     int temp_n_List = n_List;
 44     n_List = Space[n_List].cursor;
 45     int t_cursor;
 46     while(n_List != 0){
 47         t_cursor = Space[n_List].cursor;
 48         Space[n_List].data = 0;
 49         Free_StaticList(Space,n_List);
 50         n_List = t_cursor;
 51     }
 52     Space[temp_n_List].cursor = 0;
 53     printf("Clear Static List Executed!\n");
 54 }
 55 void StaticListEmpty(StaticList space,int n_List){
 56     if(space[n_List].cursor)
 57         printf("No Empty\n");
 58     else
 59         printf("Empty!\n");
 60 }
 61 int StaticList_Length(StaticList Space,int n_List){
 62     int count = 0;
 63     while(Space[n_List].cursor){
 64         count++;
 65         n_List = Space[n_List].cursor;
 66     }
 67     return count;
 68 }
 69 void InsertStaticList(StaticList Space,int n_List,int position,int e){
 70 /*
 71  *
 72  *
 73  * */
 74     int length = StaticList_Length(Space,n_List);
 75     int copy_n_List = n_List;
 76     if(position < 1 || position > length + 1){
 77         printf("Insert funtion ERROR: position\n");
 78         exit(1);
 79     }
 80     int new_i = Malloc_StaticList(Space);
 81     if(new_i){
 82         Space[new_i].data = e;
 83         int count = 0,i;
 84         for(i = 1; i < position; i++){ //
 85             n_List = Space[n_List].cursor;
 86         }
 87         Space[new_i].cursor = Space[n_List].cursor;
 88         Space[n_List].cursor = new_i;
 89         printf("INFORMATION: Insert %d to List%d with position=%d executed!\n",e,copy_n_List,position);
 90     }
 91 }
 92 void DeleteStaticList(StaticList space,int n_List,int position){
 93     int length = StaticList_Length(space,n_List);
 94     int t_n_List = n_List;
 95     if(position < 1 || position > length){
 96         printf("function DeleteSataicList Error:position!\n");
 97     }
 98     else
 99     {
100         int count = 0,result;
101         while(count < position - 1){
102             n_List = space[n_List].cursor;
103             count++;
104         }
105         result = space[space[n_List].cursor].data;
106         printf("deleteSataisList executed: element %d in position %d of List%d was deleted\n",result,position,t_n_List);
107         int temp = space[n_List].cursor;
108         space[n_List].cursor = space[space[n_List].cursor].cursor;
109         Free_StaticList(space,temp);
110     }
111 }
112 int GetStaticListElement(StaticList space,int n_List,int position){
113     int count = 0;
114     int temp_n_List = n_List;
115     while(space[n_List].cursor && count < position){
116         n_List = space[n_List].cursor;
117         count++;
118     }
119     if(space[n_List].cursor == 0){
120         printf("INFORMATION:get staticList element Error: position!\n");
121     }
122     else{
123         int e;
124         e = space[n_List].data;
125         printf("GetStaticListElement with position=%d from List%d executed! the result is %d\n",position,temp_n_List,e);
126     }
127 }
128 int LocateStaticList(StaticList space,int n_List,int e){
129     n_List = space[n_List].cursor;
130     while(n_List){
131         if(space[n_List].data == e){
132             return n_List;
133         }
134         n_List = space[n_List].cursor;
135     }
136     return 0;
137 }
138 void NextElement_SL(StaticList space,int n_List,int currentElement){
139     if(LocateStaticList(space,n_List,currentElement) == 0)
140         printf("function NextElement Error:currentElement%d dose not exist\n",currentElement);
141     else if(space[LocateStaticList(space,n_List,currentElement)].cursor == 0)
142             printf("function NextElement Error:the currentElement%d is last one of list%d\n",currentElement,n_List);
143     else
144         printf("the nextElement of %d is %d\n",currentElement,space[space[LocateStaticList(space,n_List,currentElement)].cursor].data);
145 }
146 void PriorElement_SL(StaticList space,int n_List,int currentElement){
147     if(!LocateStaticList(space,n_List,currentElement))
148         printf("function PriorElement Error:currentElement%d does not exist\n",currentElement);
149     else if(space[n_List].cursor == LocateStaticList(space,n_List,currentElement))
150         printf("function PriorElement Error:the currentElement%d is the first of the List%d\n",currentElement,n_List);
151     else{
152         n_List = space[n_List].cursor;
153         int temp;
154         while(space[n_List].data != currentElement){
155             temp = n_List;
156             n_List = space[n_List].cursor;
157         }
158         printf("the PriorElement of %d is %d\n",currentElement,space[temp].data);
159     }
160 }
161 void DisplaySpace(StaticList Space){
162     int i;
163     for(i = 0;i < MAXSIZE; i++)
164         printf("%4d",Space[i].cursor);
165     printf("\n");
166     for(i = 0;i < MAXSIZE; i++)
167         printf("%4d",Space[i].data);
168     printf("\n");
169     for(i = 0;i < MAXSIZE; i++)
170         printf("%4d",i);
171     printf("\n");
172 }
173 /*****************************************************/
174 void CreateStaticList(StaticList space,int n_List,int length){
175     if(length > FreeSpaceLength(space)){
176         printf("No remaining Space!\n");
177     }
178     else
179     {
180         int i,new_index;
181         printf("Create Static List %d:\n",n_List);
182         for(i = 1;i <= length;i++){
183             printf("--------enter %d element:  ",i);
184             new_index = Malloc_StaticList(space);
185             scanf("%d",&space[new_index].data);
186             space[n_List].cursor = new_index;
187             n_List = new_index;
188         }
189         space[new_index].cursor = 0;
190     }
191 }
192 int FreeSpaceLength(StaticList space){
193     int length = 0;
194     int index = space[0].cursor;
195     while(index){
196         length++;
197         index = space[index].cursor;
198     }
199     return length;
200 }
201 void setdatato0inordertodisplay(StaticList space){
202     int i;
203     for(i = 0;i < MAXSIZE; i++)
204         space[i].data  =  0;
205 }
206 void main(){
207     StaticList space;
208     setdatato0inordertodisplay(space);
209     InitialSpace(space);
210 
211     int list1 = InitialStaticList(space);
212     int list2 = InitialStaticList(space);
213     int list3 = InitialStaticList(space);
214 
215     printf("   SHOW SPACE\n");
216     DisplaySpace(space);
217 
218     int length3 = StaticList_Length(space,list3);
219     printf("\nthe length of list3 is %d\n",length3);
220     CreateStaticList(space,list3,5);
221     CreateStaticList(space,list2,25);
222     DisplaySpace(space);
223 
224     length3 = StaticList_Length(space,list3);
225     printf("the length of list3 is %d\n",length3);
226     int length2 = StaticList_Length(space,list2);
227     printf("the length of list2 is %d\n",length2);
228 
229     CreateStaticList(space,list2,3);
230     DisplaySpace(space);
231     length2 = StaticList_Length(space,list2);
232     printf("the length of list2 is %d\n",length2);
233     InsertStaticList(space,list3,4,666);
234 
235     DisplaySpace(space);
236     printf("the length of list3 is %d\n",StaticList_Length(space,list3));
237     
238     GetStaticListElement(space,list3,3);
239     GetStaticListElement(space,list3,9);
240     GetStaticListElement(space,list1,1);
241     GetStaticListElement(space,list2,1);
242     
243     if(LocateStaticList(space,list3,4)){
244         printf("the position of element 4 in List3 is %d\n",LocateStaticList(space,list3,4));
245     }else
246         printf("locateStaticlist in list3 with 4 is Failed!\n");
247     
248     if(LocateStaticList(space,list3,2)){
249         printf("the position of element 2 in List3 is %d\n",LocateStaticList(space,list3,4));
250     }else
251         printf("locateStaticlist in list3 with 2 is Failed!\n");
252 
253     printf("\n\ntest NextElemet\n");
254     NextElement_SL(space,list3,9);
255     NextElement_SL(space,list3,7);
256     NextElement_SL(space,list3,3);
257 
258     printf("\n\ntest PriorElement\n");
259     PriorElement_SL(space,list3,3);
260     PriorElement_SL(space,list3,8);
261     PriorElement_SL(space,list3,1);
262 
263     printf("\n");
264     DeleteStaticList(space,list3,5);
265     printf("\nthe length of list3 is %d\n",StaticList_Length(space,list3));
266     DeleteStaticList(space,list2,35);
267     printf("\nthe length of list2 is %d\n",StaticList_Length(space,list2));
268 
269     InsertStaticList(space,list3,2,888);
270     DisplaySpace(space);
271 
272     ClearStaticList(space,list3);
273     DisplaySpace(space);
274 }

 


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

-Advertisement-
Play Games
更多相關文章
  • 數據類型 可以使用BIF type()來查看對象的類型 數字 int float long 布爾(bool) True 機內表示1,機器識別非0 False 機內表示0,機器識別0 空值 None 字元串(str) 移除空格(strip) 分割(split) 長度(len) 列表(list) hel
  • Jemalloc最初是Jason Evans為FreeBSD開發的新一代記憶體分配器, 用來替代原來的 phkmalloc, 最早投入使用是在2005年. 到目前為止, 除了原版Je, 還有很多變種 被用在各種項目里. Google在android5.0里將bionic中的預設分配器從Dl替換為Je,...
  • 一所需架包 spring commom-logging.jar spring.jar 註解 common-annotation.jar aop面向切麵 aspectjrt.jar aspectjweaver.jar cglibb-nodep.ja(許可權帶代理proxy) jdbc database
  • 當一個人開始學習Java或者其他編程語言的時候,會接觸到堆和棧,由於一開始沒有明確清晰的說明解釋,很多人會產生很多疑問,什麼是堆,什麼是棧,堆和棧有什麼區別?更糟糕的是,Java中存在棧這樣一個後進先出(Last In First Out)的順序的數據結構,這就是java.util.Stack。這種
  • /** * @{#} Base64.java Create on Nov 5, 2008 7:19:56 PM * */package com.gren.remotecheck.util; import java.io.BufferedReader;import java.io.BufferedWr
  • unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, StdCtrls, ComCtrls, ImgList; type TForm
  • Socket通道 上文講述了通道、文件通道,這篇文章來講述一下Socket通道,Socket通道與文件通道有著不一樣的特征,分三點說: 1、NIO的Socket通道類可以運行於非阻塞模式並且是可選擇的,這兩個性能可以激活大程式(如網路伺服器和中間件組件)巨大的可伸縮性和靈活性,因此,再也沒有為每個S
  • 集合: 1、作用: 保存多條數據。 嘮叨:同樣是保存數據,其保存的內容不限,長度不限。 2、集合間的相互關係: Collection--Set —HashSet --List—ArrayList —LinkedList Map—HashMap 集合在底層實現時:依然使用數組,但是性能優於數組。 一、
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...