dsadasdasd

* added a method where you can get all the marks
* implemented and tested
* moved main
* changed README
* builded JavaDoc
* builded jar
This commit is contained in:
2019-06-21 23:50:34 +02:00
parent 0de35fd4a1
commit ddc81330ab
152 changed files with 37171 additions and 44 deletions

View File

@@ -57,7 +57,7 @@ public class AdjGraph<V, W extends Number> implements Graph<V, W> {
}
@Override
public void removeVertex(V vertex) throws IllegalArgumentException {
public void removeVertex(V vertex) throws NullPointerException, IllegalArgumentException {
// TODO Auto-generated method stub
}
@@ -74,6 +74,12 @@ public class AdjGraph<V, W extends Number> implements Graph<V, W> {
return false;
}
@Override
public Collection<Object> marks() {
// TODO Auto-generated method stub
return null;
}
@Override
public void mark(V vertex, Object mark) throws NullPointerException, IllegalArgumentException {
// TODO Auto-generated method stub
@@ -309,5 +315,5 @@ public class AdjGraph<V, W extends Number> implements Graph<V, W> {
// TODO Auto-generated method stub
return null;
}
}