Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
Tags
- 개발상식
- java method
- 카카오기출
- 문자열포맷
- 프로그래머스
- 공부정리
- 코테준비
- 자바문자열
- 자바
- java
- 프렌즈4블록
- 코딩테스트기출
- 프렌즈4블록java
- 자료구조 트리
- 백준 1924번 java
- heap정렬
- 알고리즘
- 백준
- 객체프로그래밍이란
- 백준 1000번
- 백준 1000번 java
- 자료구조힙
- 카카오코테
- 백준 1924번
- heap
- 카카오1차
- 힙정렬자바
- 카카오코딩테스트
- Java heap
- 객체프로그래밍
Archives
- Today
- Total
일단 시작해보는 블로그
[자료구조] 힙 (Heap) - java 본문
package com.algorithm2020;
import java.util.ArrayList;
enum HeapType {
MIN,
MAX
}
public class Heap {
ArrayList<Integer> arr;
int n; // 남아 있는 노드 개수
HeapType type;
// 생성자
public Heap(ArrayList<Integer> arr, int firstN, HeapType type) {
this.arr = arr;
this.n = firstN;
this.type = type;
if (type.equals(HeapType.MIN)) {
sortMinHeap(n);
} else {
sortMaxHeap(n);
}
}
public int top() {
return arr.get(1);
}
public void push(int insertValue) {
// 제일 마지막에 insertValue를 넣는다.
arr.add(insertValue);
++n;
if (type.equals(HeapType.MIN)) {
sortMinHeap(n);
} else {
sortMaxHeap(n);
}
}
public int pop() {
int rtn = 0;
swap(1, n);
// n-1 ~ 2 까지 sort!
if (type.equals(HeapType.MIN)) {
sortMinHeap(n-1);
} else {
sortMaxHeap(n-1);
}
rtn = arr.remove(n--);
return rtn;
}
private void sortMinHeap(int lastIndex) {
for (int i=lastIndex; i>1; i--) {
if (arr.get(i/2) > arr.get(i)) swap(i / 2, i);
}
}
private void sortMaxHeap(int lastIndex) {
for (int i=lastIndex; i>1; i--) {
if (arr.get(i/2) < arr.get(i)) swap(i/2, i);
}
}
private void swap(int index1, int index2) {
int tmp = arr.get(index1);
arr.set(index1, arr.get(index2));
arr.set(index2, tmp);
}
}
'CS > 자료구조' 카테고리의 다른 글
[자료구조] 이진검색트리, Binary Search Tree (0) | 2019.09.07 |
---|---|
[자료구조] [Array, ArrayList] VS [LinkedList] (0) | 2019.08.27 |
[알고리즘_개념] 힙 정렬, Heap Sort (1) | 2019.08.25 |
[자료구조] 힙, Heap (0) | 2019.08.25 |
[자료구조] 트리, Tree (0) | 2019.08.25 |
Comments