00001 00009 typedef class Point 00010 { 00011 public: 00012 int x,y; 00013 Point(int=0,int=0); 00014 bool operator == (Point &); 00015 bool operator != (Point &); 00016 } Pt; 00017 00018 Point FollowingPoint(Pt &,int); 00019 bool ValidPoint(Pt &,int, int); 00020 int SearchPoint(vector<Point> &,Pt); 00021 bool ConnectivityTest(Pt &, Pt &); 00022 void VPPrint(vector<Pt> &); 00023 void VVPPrint(vector< vector<Pt> > &); 00024 void LPPrint(list<Pt> &);
1.3