zoj 1788 Quad Trees
先输入初始化MAP ,然后要根据MAP 建立一个四分树,自下而上建立,先建立完整的一棵树,然后根据四个相邻的格 值相同则进行合并,(这又是递归的伟大),逐次向上递归
四分树建立完后,再进行一深度优先遍历,生成二进制字符串,再转化为16进制输出
//#include "stdafx.h"
#include <string.h>
#include <string>
#include <queue>
#include <iostream>
#include "stdio.h"
using namespace std;
char MAP[512][512];
class quadtree//结点
{
public:
char value[3];// "00"->all 0 ,"01"->all 1,"1"->mixed
quadtree*q[4];//four children
quadtree()
{
q[0] = q[1] = q[2] = q[3] = 0;//initialize four children
}
bool operator == (const quadtree &p)const//运算符重载,
{
if (strcmp(value, "1") == 0 || strcmp(value, p.value) != 0)
return 0;
else
return 1;
} };
quadtree * DFS(int r, int c, int s)//r ,c 坐标,s长度
{
int i; bool f = 1;
quadtree*temp = new quadtree;
if (s==1)//最小长度,每一个格
{
temp->value[0] = '0';
temp->value[1] = MAP[r][c];
temp->value[2] = 0;//串结束符号?
return temp; }
s /= 2;//四分
temp->q[0] = DFS(r, c, s);
temp->q[1] = DFS(r, c + s, s);
temp->q[2] = DFS(r + s, c, s);
temp->q[3] = DFS(r + s, c + s, s);
for (i = 1; i < 4;i++)
{
if(!(*temp->q[0] == *temp->q[i]))//some of four children are different ,can not be merged
{
f = 0;
break;
}
}
if (f)//all children are same,merge
{
strcpy(temp->value, temp->q[0]->value);
for (i = 0; i < 4; i++)
{
delete temp->q[i]; temp->q[i] = 0;//delete all children
}
}
else// don't merge
{
strcpy(temp->value, "1");
}
return temp;
}
string BFS(quadtree*root)//广度遍历,生成二进制字符串
{
string s = "";
quadtree *cur = root;
queue <quadtree*> que;
que.push(root);
while (!que.empty())
{
cur = que.front();
que.pop();
s += cur->value;
for (int i = 0; i < 4; i++)
{
if (cur->q[i]->value != NULL)//有子才放进去!!!!!!!
que.push(cur->q[i]);
}
}
return s;
}
//////////////////////////////////////////////
//转化为16进制。。别人家的代码
char tohex(const string& str)
{
int ret = 0; for (int i = 0; i < 4; i++)
{
ret <<= 1;//左移 实现16进制的转化
if (str[i] == '1')
++ret;
} return (ret < 10) ? '0' + ret : 'A' + ret - 10;
}
string ToHex(const string& str)
{
string tmp = str;
string ret = ""; while (tmp.length() % 4 != 0)
tmp = "0" + tmp;
for (size_t i = 0; i < tmp.length(); i += 4)
ret += tohex(tmp.substr(i, 4));//substr 截取指定字符串,i为起始位置,4表示长度 return ret;
}
////这部分是别人家的 = =
///////////////////////////////////////////////////
int main()
{
string al;
int k, N;
scanf("%d", &k);//输入test 次数
while (k--)
{
scanf("%d", &N);
for (int i = 0; i < N; i++)//输入矩阵大小
{
for (int j = 0; j < N; j++)
{
cin >> MAP[i][j];// scanf("%c", &MAP[i][j]);//initialize the array } }
quadtree *root;
root =DFS(0, 0, N);//build a quardtree;
al = BFS(root);
//cout << al << endl;
cout << ToHex(al) << endl;
}
return 0;
}
zoj 1788 Quad Trees的更多相关文章
- [LeetCode] Quad Tree Intersection 四叉树相交
A quadtree is a tree data in which each internal node has exactly four children: topLeft, topRight, ...
- [LeetCode] Construct Quad Tree 建立四叉树
We want to use quad trees to store an N x N boolean grid. Each cell in the grid can only be true or ...
- LeetCode 427 Construct Quad Tree 解题报告
题目要求 We want to use quad trees to store an N x N boolean grid. Each cell in the grid can only be tru ...
- [LeetCode&Python] Problem 427. Construct Quad Tree
We want to use quad trees to store an N x N boolean grid. Each cell in the grid can only be true or ...
- leetcode 427. Construct Quad Tree
We want to use quad trees to store an N x N boolean grid. Each cell in the grid can only be true or ...
- 【LeetCode】558. Quad Tree Intersection 解题报告(Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 日期 题目地址:https://leetcode.c ...
- 【LeetCode】427. Construct Quad Tree 解题报告(Python)
作者: 负雪明烛 id: fuxuemingzhu 个人博客: http://fuxuemingzhu.cn/ 目录 题目描述 题目大意 解题方法 日期 题目地址:https://leetcode.c ...
- “等一下,我碰!”——常见的2D碰撞检测
转自:https://aotu.io/notes/2017/02/16/2d-collision-detection/ 在 2D 环境下,常见的碰撞检测方法如下: 外接图形判别法 轴对称包围盒(Axi ...
- elasticsearch 口水篇(6) Mapping 定义索引
前面我们感觉ES就想是一个nosql数据库,支持Free Schema. 接触过Lucene.solr的同学这时可能会思考一个问题——怎么定义document中的field?store.index.a ...
随机推荐
- Lucene.net
模糊查询-〉数据库全文检索-〉Lucene 一元分词(lucene内置) Analyzer analyzer = new CJKAnalyzer(); TokenStream tokenStream ...
- JS弹出浮层
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/ ...
- C语言----------链表的简单操作
#include <stdio.h> #include <malloc.h> typedef struct node{ //定义节点类型 char data; //数据域 st ...
- 一个jQ版大图滚动
难得周末能休息,也是越发的代码难受,手就想敲点东西,这不闲着无聊敲了一个Jq版的大图滚动,不足之处大家批评指正: 运作环境win7,代码编辑器是:sublime; 我把源码复制了一下, <!do ...
- 不写完不回家的TreeSet
TreeSet详解 继承架构图: |——SortedSet接口——TreeSet实现类 Set接口——|——HashSet实现类 |——LinkedHashSet实现 ...
- hdu5737(2016多校联赛第2场D)
题意:给2组数据a和b数组,每次有2种操作:(+,l,r,x)把a数组第l个到第r个元素全置为x,(?,l,r)查询[l,r]之间哪些位置满足a[i]>=b[i](i>=l &&a ...
- (4) 二叉平衡树, AVL树
1.为什么要有平衡二叉树? 上一节我们讲了一般的二叉查找树, 其期望深度为O(log2n), 其各操作的时间复杂度O(log2n)同时也是由此决定的.但是在某些情况下(如在插入的序列是有序的时候), ...
- android appwigt
package com.example.test1; import android.os.Bundle; import android.app.Activity; import android.con ...
- 兼容IE7音乐播放器之jplayer的使用
首先列出为何要写这篇随笔的原因: 1:兼容IE7 2:音乐播放器 3:任意控制播放器 1: 最近做的网站需要兼容IE7,在此之前已经写好了关于音乐播放的插件,火狐,IE8以上,以及谷歌浏览器等都可以随 ...
- MySQL 5.6 双机热备windows7
MySQL 5.6 双机热备 目录: 1.说明 2.数据手工同步 3.修改主数据库配置文件 4.修改从数据库配置文件 5.主数据库添加备份用户 6.从数据库设置为Slave 7.验证 1.说明 1)数 ...