2012年11月2日

UVA 297 - Quadtrees

摘要: 我自己的神码,祸害了我两天的时间:各种逻辑错误,小型代码错误:思路倒不难,只是这段时间代码敲的少,能力严重下降了!!!主要是用递归函数来模拟人的比较方法。和二叉树的逻辑差不多的。代码如下:#include #include using namespace std; string s1, s2; int black; int s1n, s2n; int mypow(int e, int n)//我自己写的pow()函数; { int sum= 1; for(int i = 0; i >num; while(num--) { black = s1... 阅读全文
posted @ 2012-11-02 22:18 Primo... 阅读(156) 评论(0) 推荐(0) 编辑