heap.java
来自「一个java程序编写的svm支持向量机小程序」· Java 代码 · 共 76 行
JAVA
76 行
package edu.udo.cs.mySVMdb.Util;public abstract class Heap{ /** * Implements a Heap on n doubles and ints * @author Stefan R黳ing * @version 1.0 */ protected int the_size; protected int last; protected double[] heap; protected int[] indizes; public Heap(){}; public Heap(int n){ the_size = 0; init(n); }; public int size() { return last; // last = number of elements }; public void init(int n) { if(the_size != n){ the_size = n; heap = new double[n]; indizes = new int[n]; }; last = 0; }; public void clear() { the_size = 0; last = 0; heap = null; indizes = null; }; public int[] get_values() { return indizes; }; public abstract void add(double value, int index); public double top_value() throws Exception { return heap[0]; }; public boolean empty() { return(last == 0); }; protected abstract void heapify(int start, int size);};
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?