heap - inizio
This commit is contained in:
18
tree/binarytree/heap/CompleteBinaryTree.java
Normal file
18
tree/binarytree/heap/CompleteBinaryTree.java
Normal 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();
|
||||
}
|
||||
Reference in New Issue
Block a user