Update ConnectedComponent.java

This commit is contained in:
Febaug 2017-11-17 16:44:18 +01:00 committed by GitHub
parent 05a9bb1c9c
commit 075b30f243
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -3,9 +3,9 @@ import java.util.HashSet;
import java.util.Set;
/**
* A class that counts the number of connected components in a graph
* A class that counts the number of different connected components in a graph
*
* @author Lukas Keul
* @author Lukas Keul, Florian Mercks
*
*/
class Graph<E extends Comparable<E>> {