**fig5_9.txt** /* 1*/ template /* 2*/ inline void /* 3*/ Hash_Table:: /* 4*/ Insert( const Element_Type & Key ) /* 5*/ { /* 6*/ unsigned int Hash_Val = Hash( Key, H_Size ); /* 7*/ if( !The_Lists[ Hash_Val ].In_List( Key ) ) /* 8*/ The_Lists[ Hash_Val ].Insert_As_First_Element( Key ); /* 9*/ } /* 1*/ template /* 2*/ inline void /* 3*/ Hash_Table:: /* 4*/ Remove( const Element_Type & Key ) /* 5*/ { /* 6*/ The_Lists[ Hash( Key, H_Size ) ].Remove( Key ); /* 7*/ }