Is there a Heap in java?

后端 未结 6 2093
一整个雨季
一整个雨季 2021-01-31 13:00

I am porting a C++ library to Java and I need a heap data structure. Is there a standard implementation or will I need to do it myself?

6条回答
  •  别跟我提以往
    2021-01-31 13:55

    You can also consider TreeSet, which guarantees log(n) time for basic operations (add, remove, contains).

提交回复
热议问题