Queue
큐 Queue는 데이터를 저장하는 선형 자료구조로,
차례를 기다리는 줄이라는 의미를 가지고 있는 단어처럼 먼저 들어온 자료부터 순서대로 처리하는 방식을 말한다.
한 쪽 끝에서는 자료의 삽입 연산만 가능하고 반대쪽 끝에서는 삭제만 가능한 구조로서 선입선출(FIFO : First In First Out)의 특징을 가진다.

Queue의 특징
- 맨 앞(front) 에서 자료를 꺼내거나 삭제하고, 맨 뒤(rear)에서 자료를 추가 함
- Fist In First Out (선입선출) 구조
- 일상 생활에서 일렬로 줄 서 있는 모양
- 순차적으로 입력된 자료를 순서대로 처리하는데 많이 사용 되는 자료구조
- 콜센터에 들어온 문의 전화, 메세지 큐 등에 활용됨
- jdk 클래스 : ArrayList
package structure.ch03;
public class IntArrayQueue {
private int[] array;
private int front; // 큐의 시작 지점
private int rear; // 큐의 끝 지점
private int capacity; // 큐의 용량
private int size; // 요소의 개수
public IntArrayQueue(int capacity) {
this.capacity = capacity;
array = new int[this.capacity];
this.front = 0;
this.rear = -1;
this.size = 0;
}
// 편의 기능 만들어 보기
public boolean isEmpty() {
return size == 0; // 요소의 개수 0이면, 비어있다.
}
public boolean isFull() {
return size == capacity;
}
// todo - 1 데이터 넣기 기능 구현
public void enqueue(int item) {
// 방어적 코드
if (isFull()) {
System.out.println(" 큐 메모리 공간이 가득 참.");
} else {
// rear
rear++; // 0 <-- (첫 동작시) // 증감연산자로 0으로 시작
array[rear] = item; // array[0] = item;
size++;
}
}
// todo -2 데이터 꺼내기
public int dequeue() {
int item = 0;
if (isEmpty()) {
System.out.println("큐 메모리 공간에 요소가 존재하지 않음");
} else {
// 잠시 데이터 꺼내 보기
item = array[front]; // 0번째 요소에 접근
// front = 0 (처음 꺼낼 시,)
for (int i = front; i < rear; i++) { // 0 < 2
// array[0] = array[1];
// 200, 200, 300 -- for : 1번 동작
// 200, 300, 300 -- for : 2번 동작
array[i] = array[i + 1];
}
// 200, 300, 0
// 마지막 요소를 초기화 처리한다. ( 한 칸씩 앞으로 꺼내 땡겼으니까)
array[rear] = 0;
rear--;
size--;
}
return item;
}
// todo - 3 데이터 찾기(peek)
}
: 이 방식은 배열의 끝에 도달했을 때 자동으로 시작 위치로 돌아가지 않으므로 순환 구조가 아닌 일반 큐의 동작 방식
배열을 활용한 Queue를 순환 구조로 수정

enqueue() , dequeue() 메서드 수정, peek() 메서드 삭제, printAll() 메서드 추가
package structure.ch03;
public class IntArrayQueue2 {
private int[] array;
private int front; // 큐의 시작 지점
private int rear; // 큐의 끝 지점
private int capacity; // 큐의 용량
private int size; // 요소의 개수
public IntArrayQueue2(int capacity) {
this.capacity = capacity;
array = new int[this.capacity];
this.front = 0;
this.rear = -1;
this.size = 0;
}
// 편의 기능 만들어 보기
public boolean isEmpty() {
return size == 0; // 요소의 개수 0이면, 비어있다.
}
public boolean isFull() {
return size == capacity;
}
// todo - 1 데이터 넣기 기능 구현
public void enqueue(int item) {
// 코드 수정
// [10] [20] [30]
// 나머지 연산자를 활용한다 ( 순환구조 )
// 인덱스1 = 1 % 5; 몫 0, 나머지 1
// 인덱스2 = 2 % 5; 몫 0, 나머지 2
// 3 (임시값:3)
// 0 = 0 % 3
// 1 = 0 + 1 % 3
// 2 = 1 + 1 % 3
// 0 = 2 + 1 % 3
rear = (rear + 1) % capacity;
array[rear] = item;
size++;
}
// todo -2 데이터 꺼내기
public int dequeue() {
if (isEmpty()) {
System.out.println("Queue is empty.");
return -9999;
}
int item = array[front];
// [10] [20] [30]
front = (front + 1) % capacity;
return item;
}
// todo - 3 데이터 찾기(peek)
public int peek() {
if (isEmpty()) {
System.out.println("큐 메모리 공간에 요소가 없습니다.");
return -9999;
} else {
// peek → 맨 앞의 데이터를 리턴 시켜주는 기능일 뿐 !
return array[front];
}
}
public void printAll() {
if (isEmpty()) {
System.out.println("Queue is Empty");
return;
}
for (int i = 0; i < array.length; i++) {
System.out.println(array[i] + " ");
}
System.out.println();
}
// 코드 테스트
public static void main(String[] args) {
IntArrayQueue2 queue = new IntArrayQueue2(3);
// 데어터 넣기
queue.enqueue(100);
queue.enqueue(200);
queue.enqueue(300);
queue.enqueue(400); // 안들어감
queue.enqueue(500);
// 400 500 300
System.out.println(queue.dequeue());
System.out.println(queue.dequeue());
System.out.println(queue.dequeue());
System.out.println(queue.dequeue());
System.out.println(queue.dequeue());
System.out.println(queue.dequeue());
// queue.printAll();
} // end of main
} // end of class'Java' 카테고리의 다른 글
| List 인터페이스 (0) | 2024.05.17 |
|---|---|
| LinkedList 구현 (2) | 2024.05.14 |
| 배열을 활용한 Stack 구현 (0) | 2024.05.14 |
| 자료구조 개론 (2) | 2024.05.09 |
| 자바 multi-threading (5) | 2024.05.03 |