After experimenting with some triangulation work I ran across the question on how to determine if a polygon has a hole?
I know how to handle a known hole but am unsure of how to determine if one exists.
Example:
Given the following vertices:
0 ( 0, 0)
1 ( 0,20)
2 (20,20)
3 ( 0,20)
4 ( 2, 2)
5 ( 6, 2)
6 ( 6, 6)
7 ( 2, 6)
How do I know if it is a simple polygon such as:

or a non-simple/complex polygon like:

I ask because the data that I will have to work with has the potential of being a polygon with a hole, but I will have no knowledge beforehand of it being so.
note: the polygon will never be complex. I just need to know when the vertices of the outside of the polygon ends and the vertices comprising the hole begin.