protected void gdvOrders_RowDataBound(object sender, GridViewRowEventArgs e) { if (e.Row.RowType == DataControlRowType.DataRow) { DataRowView drv = (D ...
分类:
其他好文 时间:
2018-10-07 00:43:13
阅读次数:
248
一、题目 A lattice point (x, y) in the first quadrant (x and y are integers greater than or equal to 0), other than the origin, is visible from the origin ...
分类:
其他好文 时间:
2018-10-06 17:50:30
阅读次数:
149
无法直接传入int因为它是primitive type, changes made to it will not be visible outside the function scope. ...
分类:
其他好文 时间:
2018-10-02 18:00:26
阅读次数:
147
A self dividing number is a number that is divisible by every digit it contains. For example, 128 is a self dividing number because 128 % 1 == 0, 128 ...
分类:
其他好文 时间:
2018-10-02 17:47:10
阅读次数:
112
1. 仔细区分 pointers 和 references references和pointers的差别描述如下: pointer:当需要考虑"不指向任何对象"时,或者是考虑"在不同时间指向不同对象"的能力时,应该采用pointer。前一种情况可以将pointer设为null,后一种可以改变poin ...
分类:
编程语言 时间:
2018-10-01 15:32:30
阅读次数:
159
题意 这道题题意就是给出第一象限的n*m个点,求出站在原点可以看见多少个点 (1<=n,m<=1^5) 题解 这个题很仪仗队差不多,不过仪仗队是正方形。 这个是长方形。。。 这题其实就是求互质的数对的对数。 我们,一个一个的枚举i,然后就是求跟i互质的数的个数。 然后这个求跟i互质的数的个数可以用容 ...
分类:
其他好文 时间:
2018-09-27 22:10:55
阅读次数:
144
几乎所有目前的 3D 显示芯片都有 Z buffer 或 W buffer。不过,还是常常可以看到有人对 Z buffer 和 W buffer 有一些基本的问题,像是 Z buffer 的用途、Z buffer 和 W buffer 的差别、或是一些精确度上的问题等等。这篇文章的目的就是要简单介绍 ...
分类:
其他好文 时间:
2018-09-20 19:18:37
阅读次数:
152
B. Call of Accepted I. Lattice's basics in digital electronics K. Supreme Number ...
分类:
其他好文 时间:
2018-09-18 13:06:59
阅读次数:
190
浏览器兼容问题一:不同浏览器的标签默认的外补丁和内补丁不同 问题症状:随便写几个标签,不加样式控制的情况下,各自的margin 和padding差异较大。 解决方案:CSS里 *{margin:0;padding:0;} 备注:这个是最常见的也是最易解决的一个浏览器兼容性问题,几乎所有的CSS文件开 ...
分类:
其他好文 时间:
2018-09-16 19:44:27
阅读次数:
218
题目大意 给出一个$w\times h$的网格,定义一个连通块为一个元素个数为$n$的方格的集合$A,\forall x\in A, \exists y\in A$,使得$x,y$有一条公共边。现要求一个元素个数极多的连通块的集合$K_N$,使得$\forall A,B\in K_n$,不存在一种由 ...
分类:
其他好文 时间:
2018-09-12 20:25:39
阅读次数:
201