**fig5_23.txt** /* 1*/ template /* 2*/ void /* 3*/ Dynamic_Hash_Table:: /* 4*/ Insert( const Element_Type & Key ) /* 5*/ { /* 6*/ Hash_Table::Insert( Key ); /* 7*/ if( ++Num_Elements_In_Table > H_Size / 2 ) /* 8*/ Rehash( ); /* 9*/ }