반응형
package Algorithm;
import java.util.LinkedList;
import java.util.Queue;
class StackQueue{
Queue<Index> mainQueue;
Queue<Index> tempQueue;
public StackQueue() {
mainQueue = new LinkedList<>();
tempQueue = new LinkedList<>();
}
public void push(Index a) {
mainQueue.offer(a);
}
public Index pop() {
Index result=null;
if(mainQueue.isEmpty()) {
return null;
}
while(mainQueue.size() != 1) {
tempQueue.offer(mainQueue.poll());
}
result = mainQueue.poll();
//나머지를 다시 main큐로 옮겨준다.
if(!tempQueue.isEmpty()) {
while(!tempQueue.isEmpty()) {
mainQueue.offer(tempQueue.poll());
}
}
return result;
}
}
class Index {
private int x;
private int y;
public Index() {
}
public Index(int x, int y) {
this.x = x;
this.y = y;
}
public int getX() {
return x;
}
public void setX(int x) {
this.x = x;
}
public int getY() {
return y;
}
public void setY(int y) {
this.y = y;
}
}
반응형
'코딩테스트' 카테고리의 다른 글
[JAVA] BFS 넓이 우선 탐색 Stack 으로 구현 (0) | 2022.07.30 |
---|---|
[Python] 코딩도장 23.7 지뢰찾기 (0) | 2022.07.27 |
[python] 백준 알고리즘 2525 오븐 시계 (0) | 2022.07.25 |
[JAVA] 팩토리얼 구하기 (재귀, 메모화) (0) | 2022.07.23 |
[JAVA] 피보나치 수열 구하기 (재귀, 메모화) (0) | 2022.07.23 |