我將如何去存儲結構和int整數?在一個數組中存儲一個結構和整數
/*a struct to keep block information*/
struct header{
int freeSpace;
struct header *nextHead;
struct header *prevHead;
};
int myinit(int *array, int size){
array[0] = size;
/*initial block*/
struct header root;
root.freeSpace = size - (sizeof(struct header));
array[1] = root; /*write the intial block to the array*/
}
閱讀你所說的我想創建一個動態列表,而不是使用數組,任何建議我應該從我已經發布的地方去? – Alex 2010-11-19 11:29:13
ps:我正在重寫malloc,所以我需要存儲在數組[0]中的大小 – Alex 2010-11-19 11:31:02