[Lemon-commits] [lemon_svn] athos: r849 - hugo/trunk/src/hugo
Lemon SVN
svn at lemon.cs.elte.hu
Mon Nov 6 20:41:50 CET 2006
Author: athos
Date: Thu May 20 11:42:31 2004
New Revision: 849
Modified:
hugo/trunk/src/hugo/unionfind.h
Log:
Cooorected some eroorrs.
Modified: hugo/trunk/src/hugo/unionfind.h
==============================================================================
--- hugo/trunk/src/hugo/unionfind.h (original)
+++ hugo/trunk/src/hugo/unionfind.h Thu May 20 11:42:31 2004
@@ -24,7 +24,7 @@
*
* The class implements the \e Union-Find data structure.
* The union operation uses rank heuristic, while
- * the find operation uses path compresson.
+ * the find operation uses path compression.
* This is a very simple but efficient implementation, providing
* only four methods: join (union), find, insert and size.
* For more features see the \ref UnionFindEnum class.
@@ -188,13 +188,13 @@
* \brief A \e Union-Find data structure implementation which
* is able to enumerate the components.
*
- * The class implements an \e Union-Find data structure
+ * The class implements a \e Union-Find data structure
* which is able to enumerate the components and the items in
* a component. If you don't need this feature then perhaps it's
* better to use the \ref UnionFind class which is more efficient.
*
* The union operation uses rank heuristic, while
- * the find operation uses path compresson.
+ * the find operation uses path compression.
*
* \pre You
* need to add all the elements by the \ref insert() method.
More information about the Lemon-commits
mailing list