객체배열 만들기
배열 여러개 구현할 필요 없이 배열부분에 객체를 넣어줄 수 있다.
스택, 큐, 1차원 배열에 넣어 줄 수 있다.
반복문안에 들어가면 메모리 터질수도!
신경써서 만들어주기
Stack stack = new Stack()
stack.push(new Tower(height, position))
static class Tower {
int height;
int position;
public Tower(int height, int position) {
this.height = height;
this.position = position;
}
}
'알고리즘 > 개념정리' 카테고리의 다른 글
서로소 집합 만들기 (1) | 2022.09.20 |
---|---|
순열, 조합 (0) | 2022.09.12 |
자바 정렬하기 (0) | 2022.09.12 |
BFS,DFS (0) | 2022.08.11 |
Java 시간초과 날 때 (0) | 2022.08.03 |
댓글