티스토리 뷰
728x90
반응형
Queue 란
- Stack과 다르게 데이터가 들어간 순서대로 나오는 즉 FIFO(First In First Out) 자료구조입니다.
- offer()
- 순차 보관
- poll()
- 가장 먼저 보관되어 있는 값 추출
- peek()
- 가장 먼저 보관되어 있는 값 확인
Queue 구현 코드
public class Queue {
private int size = 2;
private int head;
private int tail;
private int[] elements;
public Queue() {
this.head = 0;
this.tail = 0;
this.elements = new int [size];
}
public boolean isEmpty(){
return head == tail;
}
public boolean isFull(){
if(tail == elements.length){
return true;
}
return false;
}
public void offer(int data){
if(isFull()){
size = tail + 5;
int [] extendElements = new int[size];
for (int i = 0; i < tail; i++) {
extendElements[i] = elements[i];
}
elements = extendElements;
}
this.elements[tail++] = data;
}
public int poll(){
if (isEmpty()) {
System.out.println("데이터가 존재하지 않습니다.");
return -1;
}
int result = elements[head++];
return result;
}
public int peek(){
if(isEmpty()){
System.out.println("데이터가 존재하지 않습니다.");
return -1;
}else{
int result = this.elements[head];
return result;
}
}
public void print(){
while (tail - head > 0) {
System.out.println(elements[head]);
head++;
}
}
}
public class QueueExample {
public static void main(String[] args) {
Queue queue = new Queue();
queue.offer(1);
System.out.println("poll() --> " + queue.poll()); // 1
queue.offer(2);
queue.offer(3);
queue.offer(4);
System.out.println("peek() --> " + queue.peek()); // 2
queue.offer(5);
queue.print();
// 2
// 3
// 4
// 5
}
}
과제 4. 앞서 만든 ListNode를 사용해서 Queue를 구현하세요.
- LinkedList로 ListNode 구현방법 >> 이동
- 위의 글을 이해해야지 해당 글을 이해할 수 있으니 꼭 읽어보셔야 합니다.
구현 코드
public class ListNodeQueue {
private ListNode head;
private LinkedList linkedList;
private int position;
public ListNodeQueue() {
this.linkedList = new LinkedList();
}
public void offer(int data){
if(head == null){
head = new ListNode(data);
}else{
linkedList.add(head, new ListNode(data), ++position);
}
}
public void poll(){
--position;
head = linkedList.remove(head, 0);
}
public void print(){
ListNode node = head;
while (node != null) {
System.out.println(node.data);
node = node.next;
}
}
}
public class ListNodeQueueExample {
public static void main(String[] args) {
ListNodeQueue listNodeQueue = new ListNodeQueue();
listNodeQueue.offer(1);
listNodeQueue.offer(2);
listNodeQueue.offer(3);
listNodeQueue.poll(); // 가장 첫번째 요소 삭제 ==> 1 삭제
listNodeQueue.offer(4);
listNodeQueue.offer(5);
listNodeQueue.print();
// 2
// 3
// 4
// 5
}
}
728x90
반응형
'JAVA > JAVA기본' 카테고리의 다른 글
JAVA - 상속이란?(feat.extends, super) (0) | 2022.01.11 |
---|---|
JAVA - Class란? (feat.인스턴스, 메서드, 생성자, this) (0) | 2022.01.04 |
JAVA - Stack이란? 그리고 구현 (0) | 2021.12.31 |
JAVA - LinkedList란? 그리고 구현 (0) | 2021.12.30 |
JAVA - 조건문과 선택문 그리고 반복문 (0) | 2021.12.28 |
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- spring boot redisson 분산락 구현
- spring boot 엑셀 다운로드
- space based architecture
- @ControllerAdvice
- spring boot excel download oom
- 공간 기반 아키텍처
- transactional outbox pattern spring boot
- transactional outbox pattern
- java ThreadLocal
- spring boot redisson sorted set
- 트랜잭셔널 아웃박스 패턴 스프링 부트 예제
- redis sorted set으로 대기열 구현
- 서비스 기반 아키텍처
- 자바 백엔드 개발자 추천 도서
- pipe and filter architecture
- redis 대기열 구현
- spring boot redis 대기열 구현
- service based architecture
- spring boot excel download paging
- spring boot redisson destributed lock
- java userThread와 DaemonThread
- pipeline architecture
- JDK Dynamic Proxy와 CGLIB의 차이
- 트랜잭셔널 아웃박스 패턴 스프링부트
- polling publisher spring boot
- microkernel architecture
- redis sorted set
- spring boot poi excel download
- 람다 표현식
- 레이어드 아키텍처란
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
글 보관함