heap - inizio

This commit is contained in:
2014-05-05 00:09:25 +02:00
parent 4f68dd31d1
commit 5d90623636
2 changed files with 169 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
package tree.binarytree.heap;
import position.Position;
import tree.binarytree.BinaryTree;
/**
* Created with xgiovio.macbookair.
* User: xgiovio
* Date: 28/04/14
* Time: 15:12
*/
public interface CompleteBinaryTree <E> extends BinaryTree<E>
{
public Position<E> add(E elem);
public E remove();
}