if(Queue->Front ==NULL){//큐가 비어 있을 때
Queue->Front = NewNode;
Queue->Rear = NewNode;
Queue->Count++;}else{
Queue->Rear->NextNode = NewNode;
Queue->Rear = NewNode;
Queue->Count++;}}
void LQ_Dequeue(LinkedQueue* Queue){
Node* TempFront = Queue->Front;if(Queue->Front->NextNode ==NULL){//큐에 노드가 하나 밖에 없을 때
Queue->Front =NULL;
Queue->Rear =NULL;}else{
Queue->Front = Queue->Front->NextNode;}
Queue->Count--;return TempFront;}