티스토리 뷰
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 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 | package sdfg; public class ArrayQueue { // 큐 배열은 front와 rear 그리고 maxSize를 가진다. private int front; private int rear; private int maxSize; private Object[] queueArray; public static void main(String args[]) { ArrayQueue que = new ArrayQueue(3); que.insert('a'); que.insert(40); que.insert(11); System.out.println(que.remove()); System.out.println(que.remove()); System.out.println(que.remove()); System.out.println(que.remove()); } // 큐 배열 생성 public ArrayQueue(int maxSize){ this.front = 0; this.rear = -1; this.maxSize = maxSize; this.queueArray = new Object[maxSize]; } // 큐가 비어있는지 확인 public boolean empty(){ return (front == rear+1); } // 큐가 꽉 찼는지 확인 public boolean full(){ return (rear == maxSize-1); } // 큐 rear에 데이터 등록 public void insert(Object item){ if(full()) throw new ArrayIndexOutOfBoundsException(); queueArray[++rear] = item; } // 큐에서 front 데이터 조회 public Object peek(){ if(empty()) throw new ArrayIndexOutOfBoundsException(); return queueArray[front]; } // 큐에서 front 데이터 제거 public Object remove(){ Object item = peek(); front++; return item; } } | cs |
'자료구조' 카테고리의 다른 글
퀵소트 구현 연습 (0) | 2018.08.09 |
---|---|
내식대로 구현한 자바 연결리스트(linkedlist) 코드 (0) | 2017.09.27 |
[자료구조/선형자료구조](직선)큐와 원형큐 (1) | 2017.08.27 |
[자료구조/선형자료구조]링크드리스트(연결리스트),스택 (0) | 2017.08.27 |
[자료구조/sort] 병합정렬 (Merge Sort) (0) | 2017.08.17 |
댓글
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
링크
TAG
- javascript
- promise
- useEffect
- storybook
- reflow
- Next.js
- server side rendering
- props
- react
- reactdom
- mobx
- es6
- react hooks
- rendering scope
- webpack
- type alias
- async
- state
- await
- Action
- Babel
- return type
- atomic design
- useRef
- typescript
- Polyfill
- reducer
- hydrate
- design system
- computed
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함