Class DataBroadFirstForestIterator<D>

  • Type Parameters:
    D - is the type of the data inside the forest
    All Implemented Interfaces:
    Iterator<D>

    public class DataBroadFirstForestIterator<D>
    extends Object
    implements Iterator<D>
    This class is an iterator on a forest that replies the user data.

    This iterator goes thru the trees in a broad-first order.

    Since:
    13.0
    Version:
    17.0 2020-01-04 14:41:41
    Author:
    Stéphane GALLAND
    Maven Group Id:
    org.arakhne.afc.core
    Maven Artifact Id:
    mathtree
    • Constructor Detail

      • DataBroadFirstForestIterator

        public DataBroadFirstForestIterator​(Iterator<Tree<D,​?>> iterator)
        Constructor.
        Parameters:
        iterator - is the iterator on the trees.
    • Method Detail

      • hasNext

        @Pure
        public boolean hasNext()
        Specified by:
        hasNext in interface Iterator<D>
      • next

        public D next()
        Specified by:
        next in interface Iterator<D>
      • remove

        public void remove()
        Specified by:
        remove in interface Iterator<D>