/[projects]/dao/FuldDaekningWorker/src/main/java/ags/utils/dataStructures/MaxHeap.java
ViewVC logotype

Contents of /dao/FuldDaekningWorker/src/main/java/ags/utils/dataStructures/MaxHeap.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2744 - (show annotations) (download)
Wed Oct 7 19:32:00 2015 UTC (8 years, 7 months ago) by torben
File size: 276 byte(s)
Ny k-d tree implementation
1 package ags.utils.dataStructures;
2
3 /**
4 *
5 */
6 public interface MaxHeap<T> {
7 public int size();
8 public void offer(double key, T value);
9 public void replaceMax(double key, T value);
10 public void removeMax();
11 public T getMax();
12 public double getMaxKey();
13 }

  ViewVC Help
Powered by ViewVC 1.1.20