摘要:
``` #include #include struct nodespace{ int teskid; // 任务号 int begin; // 开始地址 int size; // 大小 int status; // 状态 0代表占用,1代表空闲 struct nodespace *next; // 后指针 }; void initNode(struct nodespace *p){ if(p = 阅读全文
posted @ 2019-12-04 08:13
凭实力闯荡
阅读(224)
评论(0)
推荐(0)