Amazon.com Interview Question
1,572 Interview Reviews |
Back to all Amazon.com Interview Questions & Reviews
Interview questions and reviews posted anonymously by interview candidates
Interview Question for Software Development Engineer at Amazon.com:
How to save a dictionary. Easy one, just use a trie. During the process, you will be asked questions about big O stuffs. Just remember your data structure
See more for this Amazon.com Software Development Engineer Interview
Helpful Question?
Yes |
No
Inappropriate?



0 of 1 people found this helpful
by Anonymous:
Key = word
Value = defintion
Hashtable <String, String> = <Key, Value>
Use a hashcode to map the value of the key to a unique bucket (array).
In case of repeated words with multiple definitions(hash collision), use chaining (linked list) for every bucket.