?? initial_queue.cpp
字號:
#include "class.h"
void MFQ::Initial_Queue(int i)
{
Q[i].head=new QueueNode;
Q[i].head->ID=-1;
Q[i].tail=new QueueNode;
Q[i].tail->ID=-2;
Q[i].tail->next=NULL;
Q[i].head->next=Q[i].tail;
}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -