| Home >> All >> com >> port80 >> util >> [ struct Javadoc ] |
Source code: com/port80/util/struct/IHeap.java
1 // 2 // Copyright(c) 2002, Chris Leung 3 // 4 5 package com.port80.util.struct; 6 7 public interface IHeap { 8 void enqueue(Object a); 9 Object dequeue(); 10 int size(); 11 Object get(int n); 12 void clear(); 13 }