歸還一塊
查L單元的空閒塊數;
當空閒塊數
j =L+空閒塊數;
歸還塊號填入j單元
當空閒塊數=
把歸還塊號填入L+
將L單元置成
采用成組連接後
比單塊連接方式效率高
主要考的是利用文件輸入一堆空閒塊的號碼
並且可以實現輸入一個數字N
把下一個成組的內容考入專用塊
本程序包括:UNIX的成組鏈接法的設計與實現
VC++調試通過
(C)copyright by Neo
歡迎大家測試 請問題請Email:sony
*/
#include
#include
#include
const int MAXGROUP=
const int MAXJOB=
//結構體定義
typedef struct node{
int quantity;
int cell[MAXGROUP];
struct node *next;
}group;
typedef struct node
char name[
int quantity;
int cell[MAXJOB];
struct node
}job;
group *head;
int total;
job *jhead;
//初始化組函數
[
From:http://tw.wingwit.com/Article/program/czxt/201311/11257.html