**fig5_8.txt** /* 1*/ template /* 2*/ inline int /* 3*/ Hash_Table:: /* 4*/ Find( const Element_Type & Key ) /* 5*/ { /* 6*/ unsigned int Hash_Val = Hash( Key, H_Size ); /* 7*/ if( The_Lists[ Hash_Val ].Find( Key ) ) /* 8*/ { /* 9*/ Current_List = Hash_Val; /*10*/ return 1; /*11*/ } /*12*/ return 0; /*13*/ }