摘要:
笔试完后抽空做做四叉树剪裁和LOD再继续学ogre 阅读全文
摘要:
#include <iostream>#include <math.h>#include <malloc.h>using namespace std;int *position; //放置的位置int queen; //皇后数目int count; //第N种可能性//判断第n行是否放置皇后bool SignPoint(int n){for (int i=0;i<n;i++){ if (position[i] == position[n]) //该列已经放置过皇后了 return false; if (abs(position[i] - positio 阅读全文