一、前言找了不少资料,要画图片要先处理一下,需要引用别的单元,Delphi中没带,需要另外下载Gl.pas。看网上说是自带的OpenGl单元封装的是1.0版的,有此函数未声明。网上可以找到Gl.pas单元。另外需要一个Glaux.pas单元与glaux.dll,据说是辅助库。在本文最后会提供下载。感...
分类:
其他好文 时间:
2014-07-16 20:51:57
阅读次数:
225
Chef and The Right TrianglesThe Chef is given a list ofN triangles. Each triangle is identfied by the coordinates of its three corners in the 2-D cart...
分类:
其他好文 时间:
2014-07-14 00:51:29
阅读次数:
198
Given an index k, return the kth row of the Pascal's triangle.
For example, given k = 3,
Return [1,3,3,1].
Note:
Could you optimize your algorithm to use only O(k) extra space?
原题链接:https:/...
分类:
其他好文 时间:
2014-07-12 20:43:11
阅读次数:
213
poj1163The Triangle(简单DP)...
分类:
其他好文 时间:
2014-07-12 19:45:10
阅读次数:
168
GivennumRows, generate the firstnumRowsof Pascal's triangle.For example, givennumRows= 5,Return[ [1], [1,1], [1,2,1], [1,3,3,1], [1,4,6,4,1]...
分类:
其他好文 时间:
2014-07-12 00:17:08
阅读次数:
226
使用DPFJAlertDialog控件时发现DPFJAlertDialog1Click不能捕获到对话框到底按了那个按键,上网搜索后找到了解决方法:打开DPF.Android.JAlertDialog.pas文件,找到procedure TAlertDialogOnClickListener.onCl...
分类:
移动开发 时间:
2014-07-11 22:34:25
阅读次数:
548
Given a triangle, find the minimum path sum from top to bottom. Each step you may move to adjacent numbers on the row below.For example, given the fol...
分类:
其他好文 时间:
2014-07-09 23:00:38
阅读次数:
208
Cake
Time Limit: 1 Second
Memory Limit: 32768 KB
You want to hold a party. Here's a polygon-shaped cake on the table. You'd like to cut the cake into several triangle-shaped parts for th...
分类:
其他好文 时间:
2014-07-08 15:36:15
阅读次数:
298
引擎中,ray与quad求交,算法未细看,但有求解二次方程,不解。ray与triangle求交,使用的是97年经典算法,仔细看过论文,多谢小武同学指点,用到了克拉默法则求解线性方程组。想模仿该方法,做ray与quad的求交,发现方程里不仅有u和v,还有uv,没法变换成线性方程组的形式。本以为引擎中q...
分类:
其他好文 时间:
2014-07-06 15:41:40
阅读次数:
181
题意:p(m)的值为m的正因数个数(包括1和m本身)。 求满足p(x)=n的x的最小值。对于任意正整数n,有n=p1^a1 * p2^a2 * p3^a3 * …… * pn^an;(pi为质数)n的因数个数(a1+1)*(a2+1)*(a3+1)*……*(an+1);举个例子,8=2*2*2;.....
分类:
其他好文 时间:
2014-07-05 21:41:06
阅读次数:
341