Changeset 649:ce74706e924d in lemon-0.x
- Timestamp:
- 05/20/04 11:42:31 (20 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@849
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/hugo/unionfind.h
r542 r649 25 25 * The class implements the \e Union-Find data structure. 26 26 * The union operation uses rank heuristic, while 27 * the find operation uses path compress on.27 * the find operation uses path compression. 28 28 * This is a very simple but efficient implementation, providing 29 29 * only four methods: join (union), find, insert and size. … … 189 189 * is able to enumerate the components. 190 190 * 191 * The class implements a n\e Union-Find data structure191 * The class implements a \e Union-Find data structure 192 192 * which is able to enumerate the components and the items in 193 193 * a component. If you don't need this feature then perhaps it's … … 195 195 * 196 196 * The union operation uses rank heuristic, while 197 * the find operation uses path compress on.197 * the find operation uses path compression. 198 198 * 199 199 * \pre You
Note: See TracChangeset
for help on using the changeset viewer.