Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031 #ifndef __cmtkUnionFind_h_included_
00032 #define __cmtkUnionFind_h_included_
00033
00034 #include <cmtkconfig.h>
00035
00036 #include <set>
00037 #include <list>
00038
00039 namespace
00040 cmtk
00041 {
00042
00045
00047 template<class T>
00048 class UnionFind
00049 {
00050 public:
00052 typedef std::set<T> SetType;
00053
00055 typedef std::list<SetType> ListType;
00056
00058 typedef typename ListType::iterator FindResultType;
00059
00061 FindResultType Find( const T& key )
00062 {
00063 for ( FindResultType it = this->m_List.begin(); it != this->m_List.end(); ++it )
00064 {
00065 if ( it->find( key ) != it->end() )
00066 return it;
00067 }
00068 return this->End();
00069 }
00070
00072 const T FindKey( const T& key )
00073 {
00074 return *(this->Find( key )->begin());
00075 }
00076
00078 FindResultType End()
00079 {
00080 return this->m_List.end();
00081 }
00082
00084 void Union( const FindResultType& s1, const FindResultType& s2 )
00085 {
00086 if ( s1 != s2 )
00087 {
00088 s1->insert( s2->begin(), s2->end() );
00089 this->m_List.erase( s2 );
00090 }
00091 }
00092
00094 void Insert( const T& key )
00095 {
00096 SetType newSet;
00097 newSet.insert( key );
00098 this->m_List.push_back( newSet );
00099 }
00100
00101 private:
00103 ListType m_List;
00104 };
00105
00107
00108 }
00109
00110 #endif // #ifndef __cmtkUnionFind_h_included_