?? exe.cpp
字號:
#include"stdafx.h"
#include"exe.h"
//exelist *l=(exelist*)malloc(sizeof(exelist));
//pointer p;
Status InitListexe(exelist *l)
{ //初始隊列為空
l->head=l->tail=(pointer)malloc(sizeof(exe));
l->head->next=NULL;
l->len=0;
return OK;
}
Status InsertListexe(exelist*l,pointer p)
{ //插入隊尾
pointer s;
s=l->head;
while(s!=l->tail) s=s->next;
p->next=s->next;
s->next=p;
l->tail=p;
l->len++;
return OK;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -