******** fig5.17 ********** void insert( element_type key, HASH_TABLE H ) { position pos; pos = find( key, H ); if( H->the_cells[pos].info != legitimate ) /* ok to insert here */ { H->the_cells[pos].info = legitimate; H->the_cells[pos].element = key; /* Probably need strcpy!! */ } }