자료 구조 - 덱
자료 구조 - 덱 이전 시간에 공부한 큐(queue)는 삽입 삭제가 Front, Rear에서 발생하였습니다.이를 보완한 것이 덱(Dequeue)입니다.덱(Dequeue)은 Double ended queue의 약어이며 큐(queue)의 Front, Rear에서 각각 삽입, 삭제가 가능한 구조입니다. - FRONT 단에서 front_enqueue(삽입), front_dequeue(삭제)- REAR 단에서 rear_enqueue(삽입), rear_dequeue(삭제) 배열 혹은 리스트로 모두 구현 가능하다. 기존에 큐(queue)에서 구현했던 enqueue는 rear_enqueue가 되고 dequeue는 front_dequeue가 된다. 나머지 rear_dequeue, front_enqueue만 구현하면 됩니..