ZOJ1805 超级四分树 压缩四分树
思路:
实现代码:
#include<iostream>
#include<cstdio>
#include<cstring>
using namespace std;
int n, m;
int Index, count1, count2;
char str[150][150];
int MAP[150][150];
class quadtree
{
public:
int q[4];
quadtree() {}
quadtree(quadtree& a
原创
2021-06-27 15:15:50 ·
366 阅读 ·
0 评论