com.scudata.util.MinHeap Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of esproc Show documentation
Show all versions of esproc Show documentation
SPL(Structured Process Language) A programming language specially for structured data computing.
package com.scudata.util;
import java.util.Comparator;
import com.scudata.dm.comparator.BaseComparator;
/**
* ????ȡ??С??n??ֵ?Ķ?
* @author WangXiaoJun
*
*/
public class MinHeap {
// ?????(?Ѷ?Ԫ?????)??????Ԫ?ؽ???ʱ?ȸ??Ѷ????бȽϣ?????ȶѶ???????
private Object []heap; // ???ڱ?????????????ڵ??ֵ??????0??λ?ÿ???
private int maxSize; // ??ౣ????ֵ??????
private int currentSize; // ??ǰ???е?ֵ??????
private Comparator
© 2015 - 2024 Weber Informatics LLC | Privacy Policy