|
MP4
DFS and BFS using Stacks and Queues
|
every 2D point of the image is represented by a Point class you need to trverse all the points of the image More...
#include <iostream>#include <sstream>
Include dependency graph for Point.h:
This graph shows which files directly or indirectly include this file:Classes | |
| struct | Point |
Simple Point class containing a public unsigned x and y for representing 2D points on an image. More... | |
Functions | |
| std::ostream & | operator<< (std::ostream &out, Point const &point) |
| overload operator << print out a point More... | |
every 2D point of the image is represented by a Point class you need to trverse all the points of the image
|
inline |
overload operator << print out a point
| out | Output stream |
| point | The point to print |