#include
#include
#include
#define VN 8 //Á¤Á¡ÀÇ °³¼ö
#define EN 12 //edgeÀÇ °³¼ö
#define MAX 10
int Lck=0,Rck=0;
/////////////////////////////////////////////////////////////////////////////
// ±âº» edge,vertex ¸®½ºÆ® ±¸Á¶ /////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////
struct Vertex{
int vernum; struct Edge* path12; struct Edge* path1;
struct Edge* path3; struct Edge* path5; struct Edge* path6;
struct Edge* path7; struct Edge* path9; struct Edge* path10;
}*v[VN]; // Á¤Á¡ VN-1°³ 1~VN-1
struct Edge{ // edge¸®½ºÆ® ±¸Á¶ | leftver | value | passcheck | Rightver |
struct Vertex* LeftVer;// | ÁÂÃøÁ¤Á¡| °ª | Åë°ú¿©ºÎ | ¿ìÃøÁ¤Á¡ |
struct Vertex* RightVer;
int recur;
int value;
int passcheck;
}*e[EN]; //¡¦(»ý·«)
|