inizializzazione di graph e partition

This commit is contained in:
2014-05-20 17:51:31 +02:00
parent 0b0e20baf8
commit 4420be5086
4 changed files with 404 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
package partition;
import set.Set;
/**
* Created with xgiovio.macbookair.
* User: xgiovio
* Date: 19/05/14
* Time: 15:02
*/
public class ListPartition <E> implements Partition<E> {
@Override
public int size() {
return 0;
}
@Override
public boolean isEmpty() {
return false;
}
@Override
public Set<E> makeSet(E x) {
return null;
}
@Override
public Set<E> union(Set<E> A, Set<E> B) {
return null;
}
@Override
public Set<E> find(E x) {
return null;
}
}