博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[CareerCup] 9.7 Paint Fill 填充
阅读量:5008 次
发布时间:2019-06-12

本文共 1343 字,大约阅读时间需要 4 分钟。

 

9.7 Implement the "paint fill" function that one might see on many image editing programs. That is, given a screen (represented by a two-dimensional array of colors), a point, and a new color, fill in the surrounding area until the color changes from the original color.

 

这道题是一道填充问题,有点类似于Flash中的油桶工具,就是给指定的位置填充颜色,如果要填充的颜色和原来的颜色相同,则不发生变换,如果不同的话,则把相连接的区域都填充为新的颜色。那么我们使用递归来做,首先判断要填充的颜色和该位置上原有的颜色是否相同,如果不同的话就开始填充,如果周围颜色和起始位置颜色相同也填充,参见代码如下:

 

enum Color { Black, White, Red, Yellow, Green };class Solution {public:    bool paintFill(vector
> &screen, int x, int y, Color newColor) { if (screen[x][y] == newColor) return false; return paintFill(screen, x, y, screen[x][y], newColor); } bool paintFill(vector
> &screen, int x, int y, Color oldColor, Color newColor) { if (x < 0 || x >= screen.size() || y < 0 || y >= screen[0].size()) return false; if (screen[x][y] == oldColor) { screen[x][y] = newColor; paintFill(screen, x - 1, y, oldColor, newColor); paintFill(screen, x + 1, y, oldColor, newColor); paintFill(screen, x, y - 1, oldColor, newColor); paintFill(screen, x, y + 1, oldColor, newColor); } return true; }};

 

转载于:https://www.cnblogs.com/grandyang/p/4831734.html

你可能感兴趣的文章
软件工程概论第六周学习进度条
查看>>
[思路]导入导出功能
查看>>
【iOS】UICollectionView自己定义Layout之蜂窝布局
查看>>
php将数组或字符串写入文件
查看>>
【AHOI2013】【BZOJ3238】差异
查看>>
【以太坊钱包开发 一】MyEtherWallet 钱包开发项目概述
查看>>
golang——(strings包)常用字符串操作函数
查看>>
发布aar到jcenter
查看>>
跨浏览器问题的五种解决方案
查看>>
selenium通过send_keys方法上传文件
查看>>
修改oracle内存占用
查看>>
Azure DevOps (TFS) 与 Office 集成
查看>>
java 学习第二篇关系运算符和布尔值
查看>>
flask--session组件
查看>>
深入理解 CSS变形 transform(3d)
查看>>
python模块:xml
查看>>
OCP-1Z0-051-题目解析-第6题
查看>>
JS获取中文拼音首字母,并通过拼音首字母高速查找页面内的中文内容
查看>>
站长VS微商 你选择哪个?
查看>>
LeetCode :: Convert Sorted Array (link list) to Binary Search Tree [tree]
查看>>