数据结构与算法MOOC / 第十二章 高级数据结构 练习题(Excercise for chapter12 Advanced Data structurel)2:四分树
AC代码
#include <cstdio>
#include <string>
#include <vector>
#include <queue>
#include <bitset>
int bmp[512][512];
using namespace std;
struct cmd {
int n, r, c;
};
string buildTree(int n) {
string result;
queue<cmd> q({
{
n, 0, 0}});
while (!q.empty()) {
int n0 = q.front().n, r = q.front().r