This is a decision that needs to be made after considering the pros and cons for your specific situation. There is no "right answer".
By creating a single Address table you are saying that Address is an entity in its own right, that may be associated with various other entities. This would allow you to query based on Address, e.g. "what people/organisations/etc. are located at address x?" It also means that you only have to enforce the Address business rules once, and that addresses are handled consistently everywhere.
On the other hand, if for your purposes address is merely a few attributes with little in the way of associated rules, and you don't want to query by address across entities, and you don't mind the duplication of coding effort, then the other approach may be fine.
Having said all that, I'd probably go for the Address table. Right now you may not have need of its advantages, but as requirements change you may find you do.