반응형
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
|
package study;
public class HeapTest {
static int size =1;
static int heap[] = new int[100];
static void insert(int item) {
int i = ++size;
while(i!=1 && heap[i/2] < item) {
heap[i] = heap[i/2];
i /=2;
}
heap[i] = item;
}
static int delete() {
int result = heap[1];
int item = heap[size--];
int parent = 1;
int child = 2;
while(child <=size) {
//자식중에 더큰값을 고른다.
if(child<size && heap[child] <heap[child+1]) {
child++;
}
//자식과 부모를 비교해서 부모가 더크다면 while 빠져나온다
if(item >= heap[child]) {
break;
}
//그게아니라면 갱신한다
//parent의 위치에 child를 올린다.
heap[parent] = heap[child];
parent = child;
child = child*2;
}
heap[parent] = item;
return result;
}
public static void main(String[] args) {
insert(5);
insert(7);
insert(2);
insert(14);
System.out.println(delete());
System.out.println(delete());
System.out.println(delete());
System.out.println(delete());
}
}
http://colorscripter.com/info#e" target="_blank" style="color:#4f4f4ftext-decoration:none">Colored by Color Scripter
|
반응형
'Algorithm' 카테고리의 다른 글
피사노주기 (0) | 2020.03.03 |
---|---|
페르마의 소정리 , 확장 유클리드 (0) | 2020.03.02 |
세그먼트 트리 (0) | 2020.02.27 |
트리의 지름 (0) | 2020.02.24 |
DFS를 Stack을 이용해서 풀어보자. (0) | 2020.02.13 |