c++ - std::make_heap equivalent in Java? -
stl has useful function. there equivalent in java? write custom implementation useful not reinvent wheel.
std::make_heap
makes binary heap, used priority-queue , called priorityqueue in java.
correction: there isn't standard binary-heap class in java, suggested 2 in comment below.
Comments
Post a Comment