用回溯思想求解N皇后问题 #ifndef _POINT_H #define _POINT_H class Queen { friend int nQueen(int n); private: bool Place(int k); void Backtrack(void); int n; int *x; long sum; }; #endif