算法为象棋子桌子这样的两列桌子制作项目背景颜色

时间:2018-07-20 08:40:45

标签: algorithm

我想创建一种算法来创建某些类似图片的项目,其中项目的背景色像国际象棋桌(仅算法Plz),因为我在android中具有recycleviews,并且我想使其像..

感谢您的帮助

enter image description here

2 个答案:

答案 0 :(得分:1)

当且仅当r是偶数时,第c行第r + c列的正方形为“白色”。

答案 1 :(得分:0)

我可以为您编写伪代码

int boxes[10][10];
for (int i =0; i < 10; i++)
{
    for (int j=0; j<10; j++)
    {
        if (i+j % 2 ==0)
            Color color = "red";
        else
            Color color = "green";
        int width = Getwidth(i);   // get the width of you want, since all boxes have same width at the same column. 
        int hight = Getheight(j);  //Same as before
        drawBox(i,j,width,hight, color);
    }
}