Click to See Complete Forum and Search --> : dictionay in assembly


cpeng
April 27th, 2008, 01:24 PM
i have to make a small sclae dictionary which contain 10 words and their meaning.
when user enter word in dictionay meaning will display.

plz help me
thanks in advance

JamesSchumacher
April 29th, 2008, 12:41 PM
Implement a hash table, hash the string they enter, you go to the bucket where this entry resides, walk the list until you find the correct string, and display the meaning for the data stored in the tag of the node.