Queue는 기본적인 자료구조이다. first-in first-out으로 먼저 들어온 노드가 먼저 나간다.
이러한 Queue는 javascript에서 array.prototype.push
와 array.prototype.shift()
로 간단하게 구현할 수 있다. 하지만, shift()를 사용할 경우 array의 첫 번째 index가 빠져나가기 때문에 모든 원소들을 앞으로 한칸씩 댕겨 줘야한다. 그래서 O(1)이 걸려야할 것이, O(N)이 걸리게 될 것이다.
그래서 Linked List를 사용하여 만들어줘야한다.
// 각각의 노드, 노드의 data와 다음 노드를 가리키고 있다.
class Node {
constructor(data) {
this.data = data;
this.next = null;
}
}
// 큐 클래스
class Queue {
constructor() {
this.head = null; // 제일 앞 노드
this.rear = null; // 제일 뒤 노드
this.length = 0; // 노드의 길이
}
enqueue(data) { // 노드 추가.
const node = new Node(data); // data를 가진 node를 만들어준다.
if (!this.head) { // 헤드가 없을 경우 head를 해당 노드로
this.head = node;
} else {
this.rear.next = node; // 아닐 경우 마지막의 다음 노드로
}
this.rear = node; // 마지막을 해당 노드로 한다.
this.length++;
}
dequeue() { // 노드 삭제.
if (!this.head) { // 헤드가 없으면 한 개도 없는 것이므로 false를 반환.
return false;
}
const data = this.head.data; // head를 head의 다음 것으로 바꿔주고 뺀 data를 return
this.head = this.head.next;
this.length--;
return data;
}
// head를 반환하는 함수
front() { // head가 있을 경우 head의 data를 반환.
return this.head && this.head.data;
}
//큐의 모든 원소를 반환하는 함수
getQueue() {
if (!this.head) return false;
let node = this.head;
const array = [];
while (node) { // node가 없을 때까지 array에 추가한 후 반환해준다.
array.push(node.data);
node = node.next;
}
return array;
}
}
const queue = new Queue();
queue.enqueue(1);
queue.enqueue(2);
queue.enqueue(3);
queue.enqueue(4);
queue.dequeue();
queue.dequeue();
console.log(queue.getQueue());
// [3, 4] 출력.