There are examples in the standard classes.
An example of Composite is the java.awt.Component abstract class. A Container is a Component that can hold other Components. The recursive composition is not handled directly by the Component class, but indirectly by the Container subclass.
Examples of Iterator are the java.util.Enumeration and java.util.Iterator interfaces and the classes that implement them.