鍊錶
定義:動態的進行儲存分配的一種結構;根據需要開闢分配單元,節約記憶體空間;
結點:包含使用者的實際資料和下乙個結點的位址;
簡單結構:
2.靜態鍊錶
設計乙個這樣的結構體型別,
struct student
;
它對對應的鍊錶為:
注意:定義乙個struct student,並未實際分配空間,只有定義變數才分配儲存單元
**:
#include //靜態鍊錶輸出學生資訊
struct student
;void main()
while(p!=null);
}
截圖:
3.動態鍊錶
程式執行過程中從無到有的建立起乙個鍊錶,即乙個乙個的開闢結點和輸入各結點資料,並建立起前後相鏈的關係
**:
#include //建立學生資訊的單向動態鍊錶
#include #define len sizeof(struct students)
#define n 100
struct students
;int n;
struct students *creat()//建表
p2->next=null;
return (head);
}void print(struct students *head)//輸出表
while(p!=null);
}void main()
截圖:
C語言例項練習
最近撿起了很久以前的c語言,把一些看到敲下練習的例項記錄如下 有1 2 3 4個數字,能組成多少個互不相同且無重複數字的三位數?都是多少?void test1 int num printf count is d n count 乙個整數,它加上100後是乙個完全平方數,再加上168又是乙個完全平方數...
C 語言例項001
我是新手 碼農一童,目的是為了與大家分享,討論c語言 並督促自己學習,話不多說,見乾貨。1 輸出helloword includevoid main 主函式 2 執行多個原始檔 hello.h檔案 includevoid helloworld 函式宣告print.cpp 檔案 include hel...
C 語言例項003
模擬atm機介面 乙個模擬atm機介面,其實就是乙個簡單的swich語句進行選擇,寫 的過程中難免會出現一些這樣或那樣的錯誤,一定要細心細心再細心 include 模擬atm機介面 include includevoid main while selectkey 1 selectkey 2 sele...