I want to design:
1. address class ->using dictionary data structure where items are; state, city and street for individual person
2. name class -> person's first and last name
3. display class -> searches for the given name and displays the address of that particular name
my questions are:
1. how to design the address class such that it takes name of the person from the name class and stores the address info. in a dictionary?
2. how to make search for the name and display of the address information?