單迴圈鏈表

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

1 #include<stdio.h> 2 #include<stdlib.h> 3 4 typedef struct Node{ 5 int data; 6 struct Node* next; 7 }Node,*LinkList; 8 9 void InitialList(LinkList *L


  1 #include<stdio.h>
  2 #include<stdlib.h>
  3 
  4 typedef struct Node{
  5     int data;
  6     struct Node* next;
  7 }Node,*LinkList;
  8 
  9 void InitialList(LinkList *L){
 10     *L = (LinkList)malloc(sizeof(struct Node));
 11     if(!(*L)){
 12         printf("malloc failed!\n");
 13         exit(1);
 14     }
 15     (*L)->next = (*L);
 16 }
 17 void ClearList(LinkList *L){
 18     LinkList q,p = (*L)->next;
 19     while(p != *L){
 20         q = p->next;
 21         free(p);
 22         p = q;
 23     }
 24     (*L)->next = *L;
 25 }
 26 void DestroyList(LinkList *L){
 27     LinkList q,p = *L;
 28     while(p->next != *L){
 29         q = p->next;
 30         free(p);
 31         p = q;
 32     }
 33     free(*L);
 34     *L = NULL;
 35 }
 36 int IsEmpty(LinkList L){
 37     if(L->next == L)return 1;
 38     else return 0;
 39 }
 40 int Length_SCL(LinkList L){
 41     int length = 0;
 42     LinkList cursor = L;
 43     while(cursor->next != L){
 44         length++;
 45         cursor = cursor->next;
 46     }
 47     return length;
 48 }
 49 void GetElement_SCL(LinkList L,int position){
 50     int length = Length_SCL(L);
 51     if(position < 1 || position > length){
 52         printf("Error:getElemet:position error!\n");
 53     }
 54     else{
 55         int count = 0;
 56         while(count < position){
 57             L = L->next;
 58             count += 1;
 59         }
 60         printf("getElement in position %d is: %d\n",position,L->data);
 61     }
 62 }
 63 int ElementLocate_SCL(LinkList L,int value){
 64 //根據給定的值返回下表,返回0則表示當前表中沒有該元素
 65     int index = 1;
 66     LinkList p = L->next;
 67     while(p != L){
 68         if(p->data == value){
 69             return index;
 70         }
 71         p = p->next;
 72         index += 1;
 73     }
 74     return 0;
 75 }
 76 void PriorElement_SCL(LinkList L,int current_element){
 77     if(!ElementLocate_SCL(L,current_element))
 78         printf("%d is not belong to this List!\n",current_element);
 79     else{
 80         if(ElementLocate_SCL(L,current_element) == 1){
 81             LinkList p = L;
 82             while(p->next != L)
 83                 p = p->next;
 84             printf("PriorElement:before %d is %d\n",current_element,p->data);
 85         }
 86         else{
 87             LinkList p = L->next;
 88             LinkList q = L;
 89             while(p!=L){
 90                 if(p->data == current_element){
 91                     printf("PriorElement:before %d is %d\n",current_element,q->data);
 92                     break;
 93                 }
 94                 q = p;
 95                 p = p->next;
 96             }
 97         }
 98     }
 99 }
100 void NextElement_SCL(LinkList L,int current_element){
101     if(!ElementLocate_SCL(L,current_element))
102         printf("%d is not belong to this list!\n");
103     else{
104         if(ElementLocate_SCL(L,current_element) == Length_SCL(L))
105             printf("NextElement:next %d is %d\n",current_element,L->next->data);
106         else{
107             LinkList p = L;
108             LinkList q = L->next;
109             while(q != L){
110                 if(p->data == current_element){
111                     printf("NextElement:next %d is %d\n",current_element,q->data);
112                     break;
113                 }
114                 p = q;
115                 q = q->next;
116             }
117         }
118     }
119 }
120 void InsertList_SCL(LinkList *L,int position,int value){
121     int length = Length_SCL(*L);
122     if(position < 1 || position > length + 1){
123         printf("Error:insertList:position\n");
124     }
125     else{
126         LinkList s = (LinkList)malloc(sizeof(struct Node));
127         s->data = value;
128         int count = 0;
129         LinkList p = *L;
130         while(count < position-1){
131             p = p->next;
132             count++;
133         }
134         s->next = p->next;
135         p->next = s;
136         printf("inserted %d before index %d\n",value,position);
137     }
138 }
139 void DeleteList_SCL(LinkList *L,int position){
140     int length = Length_SCL(*L);
141     if(position < 1 || position > length){
142         printf("Error:deleteList:position!\n");
143     }
144     else{
145         int count = 0,value;
146         LinkList p = *L;
147         while(count < position - 1){
148             p = p->next;
149             count++;
150         }
151         value = p->next->data;
152         LinkList temp = p->next;
153         p->next = p->next->next;
154         free(temp);
155         printf("deleted %d position is %d\n",value,position);
156     }
157 }
158 void TailCreate_SCL(LinkList *L,int count){
159     LinkList tail = *L,s;
160     int i = 0;
161     for(i = 0;i < count; i++){
162         printf("please enter %d element:  ",i+1);
163         s = (LinkList)malloc(sizeof(struct Node));
164         scanf("%d",&(s->data));
165         s->next = tail->next;
166         tail->next = s;
167         tail = s;
168     }
169 }
170 void Display_SCL(LinkList L){
171     printf("------display executed!----------\n");
172     int length = Length_SCL(L);
173     L = L->next;
174     int i;
175     for(i = 1; i <= length; i++){
176         printf("%d ",L->data);
177         L = L->next;
178     }
179     printf("\n");
180 }
181 /*會死迴圈輸出1,2,3,未定義的數(頭結點的data),說明本文件中的
182  * 迴圈鏈表尾節點的next指向的是頭結點,而不是第一個節點。
183  * 為了檢測在做了操作之後,是否是保留了"環"的性質
184  * */
185 void Display_SCL_1(LinkList L){
186      while(L->next != NULL){
187          printf("%d  ",L->data);
188          L = L->next;
189      }
190 }
191 int main(){
192     LinkList L;
193     InitialList(&L);
194     TailCreate_SCL(&L,3);
195     Display_SCL(L);
196     //DestroyList(&L);
197     ClearList(&L);
198     if(IsEmpty(L))
199         printf("List is Empty!\n");
200     else
201         printf("there is element in List\n");
202     int r1 = Length_SCL(L);
203     printf("the length of list is %d\n",r1);
204     Display_SCL(L);
205     TailCreate_SCL(&L,5);
206     GetElement_SCL(L,4);
207     GetElement_SCL(L,6);
208     GetElement_SCL(L,1);
209     GetElement_SCL(L,5);
210 
211     if(ElementLocate_SCL(L,1))
212         printf("the position of 1 is %d\n",ElementLocate_SCL(L,1));
213     else
214         printf("there is no this element is this list!\n");
215     if(ElementLocate_SCL(L,8))
216         printf("the position of 8 is %d\n",ElementLocate_SCL(L,8));
217     else
218         printf("there is no this element is this list!\n");
219     if(ElementLocate_SCL(L,9))
220         printf("the position of 9 is %d\n",ElementLocate_SCL(L,9));
221     else
222         printf("there is no this element is this list!\n");
223     if(ElementLocate_SCL(L,5))
224         printf("the position of 5 is %d\n",ElementLocate_SCL(L,5));
225     else
226         printf("there is no this element is this list!\n");
227 
228     //test PriorElement
229     printf("\n++++++++test priorElement++++++\n");
230     PriorElement_SCL(L,1);
231     PriorElement_SCL(L,2);
232     PriorElement_SCL(L,6);
233     PriorElement_SCL(L,9);
234     PriorElement_SCL(L,5);
235     //test NextElement
236     printf("\n++++++++test nextElement+++++++\n");
237     NextElement_SCL(L,5);
238     NextElement_SCL(L,1);
239     NextElement_SCL(L,2);
240     NextElement_SCL(L,17);
241     printf("\n++++++++test InsertList++++++++\n");
242     InsertList_SCL(&L,2,888);
243     Display_SCL(L);
244     InsertList_SCL(&L,1,666);
245     Display_SCL(L);
246     InsertList_SCL(&L,8,999);
247     Display_SCL(L);
248     InsertList_SCL(&L,10,1111);
249     Display_SCL(L);
250     //Display_SCL_1(L);
251     printf("\n++++++++test DeleteList+++++++++\n");
252     DeleteList_SCL(&L,5);
253     Display_SCL(L);
254     DeleteList_SCL(&L,8);
255     Display_SCL(L);
256     DeleteList_SCL(&L,1);
257     Display_SCL(L);
258     //Display_SCL_1(L);
259     return 0;
260 }

 

 


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

-Advertisement-
Play Games
更多相關文章
  • +=,-=,*=,/=隱含了強制類型轉換。 邏輯運算中,&和&&的區別為: &:無論左邊為真假,右邊都參與運算 &&:如果左邊為假,則右邊不參與運算,如果左邊為真,右邊參與運算。 異或操作可以實現兩個整數的交換(不需要額外空間開銷): a, b; a = a ^ b; b = a ^ b; a =
  • 本系列文章第二篇主要說明windows環境的編譯環境搭建以及編譯過程。 編譯環境選擇: 1.選用作神一樣存在的Microsoft Visual C++ Compiler for Python 2.7為編譯器使用。不選用vs的原因在於vs過於龐大不太適合我這種喜歡小而全的思想。這裡也沒有選擇Annou
  • 說明:本文主要參考自《分散式Java應用:基礎與實踐》 1、Java代碼執行流程 第一步:*.java-->*.class(編譯期) 第二步:從*.class文件將其中的內容載入到記憶體(類載入)(運行期) 第三步:執行代碼(運行期) 2、代碼編譯 javac命令將源碼文件編譯為*.class文件。
  • 例1:求學生的平均分 1 public static void main(String[] args) { 2 Scanner input=new Scanner(System.in); 4 int scores []=new int[5]; 5 int sum=0; 6 7 System.out.
  • I.love(You)
  • 一、初入裝飾器 1、首先呢我們有這麼一段代碼,這段代碼假如是N個業務部門的函數 1 def f1(aaa): 2 print('我是F1業務') 3 if aaa == 'f1': 4 return 'ok' 5 6 def f2(aaa): 7 print('我是F2業務') 8 if aaa =
  • 複習: 1、國際化 1)要jsp頁面中,引入資源文件的信息(資源標識,fmt:set base="msg",語言代碼,區域代碼 2)要有對應的資源文件,msg_zh_CN.properties,編碼 3)要使用fmt標簽,引入資源文件中,key,key=value.利用動作指令taglib 來添加,
  • 筆記信息 複習: css的常用樣式: border background padding margin float position 定位 top left 確定div在頁面中的位置,這兩個值可以為負數。 css+div 佈局方式 css+div+table 先由div劃分大塊兒,再由table進行
一周排行
    -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.數據驗證 在伺服器端進行嚴格的數據驗證,確保接收到的數據符合預期格 ...