博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[CareerCup] 5.8 Draw Horizonatal Line 画横线
阅读量:6118 次
发布时间:2019-06-21

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

 

5.8 A monochrome screen is stored as a single array of bytes, allowing eight consecutive pixels to be stored in one byte.The screen has width w, where w is divisible by 8 (that is, no byte will be split across rows).The height of the screen, of course, can be derived from the length of the array and the width. Implement a function drawHorizontall_ine(byte[] screen, int width, int xl, int x2, int y) which draws a horizontal line from (xl, y)to(x2, y).

 

这道题给了我们一个字节数组,用来表示一个单色的屏幕,并给定我们两点坐标,让我们画一条线段。这让我想起了小学的时候,机房的那个电脑只能用图龟在屏幕上画线(呀,暴露年龄了-.-|||),当然那时候我不可能知道原理的。言归正传,这道题给我们的点的y坐标都相同,就是让我们画一条直线,大大降低了难度。当然我们可以按位来操作,但是这样的解题就不是出题者要考察的本意了,我们需要直接对byte处理。思路是首先算出起点和终点之间有多少字节是可以完全填充的,先把这些字节填充好,然后再分别处理开头和结尾的字节,参见代码如下:

 

class Solution {public:    void drawLine(vector
&screen, int width, int x1, int x2, int y) { int start_offset = x1 % 8, first_full_byte = x1 / 8; int end_offset = x2 % 8, last_full_byte = x2 / 8; if (start_offset != 0) ++first_full_byte; if (end_offset != 0) --last_full_byte; for (int i = first_full_byte; i <= last_full_byte; ++i) { screen[(width / 8) * y + i] = (unsigned char) 0xFF; } unsigned char start_mask = (unsigned char) 0xFF >> start_offset; unsigned char end_mask = (unsigned char) 0xFF >> (8 - end_offset); if (start_offset != 0) { int byte_idx = (width / 8) * y + first_full_byte - 1; screen[byte_idx] |= start_mask; } if (end_offset != 7) { int byte_idx = (width / 8) * y + last_full_byte + 1; screen[byte_idx] |= end_mask; } }};

 

转载地址:http://ralka.baihongyu.com/

你可能感兴趣的文章
Android缓存图片,在系统图库却看不见。怎么做到的?答:新建“.nomedia”的文件即可。...
查看>>
eclipse中在整个工程中查找一个字符串的步骤
查看>>
数据类型转换
查看>>
[转] Android开发者必备的42个链接
查看>>
16.Java5的CountDownLatch同步工具
查看>>
centos7.2环境下安装smokeping对网络状态进行监控
查看>>
zabbix通过php脚本模拟业务访问redis验证nosql的可用性
查看>>
【算法学习笔记】04.C++中结构体定义练习(bign初步)
查看>>
mac os idea的快捷键
查看>>
Java虚拟机(四)--垃圾回收
查看>>
js打开新窗口与页面跳转的几种方法
查看>>
阿里云ECS部署ZooKeeper注意事项
查看>>
Cuda程序的设计-2
查看>>
微信自定义菜单类简单开发样例
查看>>
input【type="checkbox"】标签与字体对齐
查看>>
使用nginx搭建rtmp服务器
查看>>
学习React系列(七)——Fragments、Portals、Error Boundaries与WEB组件
查看>>
C#winform判断鼠标30秒不动就关闭窗口
查看>>
Linux 系统 杀Oracle 进程
查看>>
poj 2828 Buy Tickets(线段树)
查看>>