基本算法 这些都是非常基本的的算法,希望所有学习的人都能理解! 1.数论算法 求两数的最大公约数 function gcd(a,b:integer):integer; begin if b=0 then gcd:=a else gcd:=gcd (b,a mod b); end ; 求两数的最小公倍...
分类:
其他好文 时间:
2014-07-16 19:35:42
阅读次数:
665
一、批量删除表格复选框 "> " /> 删除按钮 " posttype="string" rel="wids" target="selectedTodo" title="确实要删除这些记录吗?" >删除 二、
分类:
其他好文 时间:
2014-07-16 19:36:05
阅读次数:
173
Pascal内存病毒Chaobs从互联网上获得 pascal病毒虽然说只用Ctrl+Pause Break就可以关闭,但是像有些程序一旦启动,不用等你找到那两个键,就自己运行结束关闭了。比如下面一个程序:vara:text;beginassign(a,'C:\WINDOWS\system32\sys...
分类:
其他好文 时间:
2014-07-16 19:35:57
阅读次数:
170
在ERP開發過程中經常會使用到某字段的值是由其他字段計算得來,並且有些還需要將計算的結果存入資料庫。以上功能上OpenERP中是用field.function實現的其中有種模式a). 只計算,不存儲這種方式比較簡單,只需要設定用來計算值的函數即可,函數分類method和function,method...
分类:
其他好文 时间:
2014-07-16 19:35:49
阅读次数:
168
一个经典的打飞机游戏(1)Pascal代码十分经典,有一种街机的感觉奇葩青年的又一控制台神作。usescrt;typelist=recordty,ax:integer;end;xy=recordbx,by:integer;end;l1=array[1..4,1..5]ofchar;l2=array[...
分类:
其他好文 时间:
2014-07-16 19:36:19
阅读次数:
353
发一段测试码,用于检测杀毒软件的性能将下面这段话复制X5O!P%@AP[4\PZX54(P^)7CC)7}$EICAR-STANDARD-ANTIVIRUS-TEST-FILE!$H+H*测试方法:1.鼠标右键点击桌面空白处,创建一个“文本文档”。2.将上面这段测试代码复制到“文本”里,保存,然后可...
分类:
其他好文 时间:
2014-07-16 19:36:12
阅读次数:
208
// 铸融效果 public static Bitmap changeToMolten(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int dst[] = new int[wi...
分类:
其他好文 时间:
2014-07-16 19:36:35
阅读次数:
141
// 怀旧效果函数 public static Bitmap changeToOld(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); Log.i("OldFilter", "wid...
分类:
其他好文 时间:
2014-07-16 19:36:26
阅读次数:
178
一个被人写滥了的小程序,新手学习,Pascal By Chaobs初学者可以用它来学习随机函数的运用,当然你完全可以自己写一个随机函数。var player1,player2:longint; a,b,l,o,i,v:longint; w:boolean;begin randomize; write...
分类:
其他好文 时间:
2014-07-16 19:36:43
阅读次数:
139
//哈哈镜效果 public static Bitmap changeToHaha(Bitmap bitmap){ int centerX = bitmap.getWidth() / 2; int centerY = bitmap.getHeight() / 2; float radius =...
分类:
其他好文 时间:
2014-07-16 19:36:51
阅读次数:
193
先要导入jxl架包,其中的abc.xls为测试Excel,具体代码如下,仅供参考:import java.io.File;import java.io.FileInputStream;import java.io.IOException;import java.io.InputStream;impo...
分类:
其他好文 时间:
2014-07-12 13:48:05
阅读次数:
211
// 光照效果函数 public static Bitmap changeToLight(Bitmap bitmap) { int width = bitmap.getWidth(); int height = bitmap.getHeight(); int pixColor = 0; in...
分类:
其他好文 时间:
2014-07-16 19:37:15
阅读次数:
183
不要消灭星星 Pascal小游戏 Chaobs改编自pascal吧控制台小游戏嘛,就当是练习一下结构化的写法。program wxtw;uses crt;type zbdy=record x,y:integer; end;var n,i,x,y,t,sjs:integer; ml:char;zb: ...
分类:
其他好文 时间:
2014-07-16 19:37:07
阅读次数:
294
运行代码前先导入jxl架包,以下代码仅供参考:测试excel文件(我要获取该excel的内容为省、县、乡、村、组和PH的值):ExcelTest01类代码如下:// 读取Excel的类import java.io.BufferedWriter;import java.io.File;import j...
分类:
其他好文 时间:
2014-07-16 19:37:40
阅读次数:
187
oe中的domain多用于自定义搜索条件。 domain中的单个条件是一个三个元素组成的元组。第一个是对象的一个column,也就是字段名;第二个是比较运算符``=, !=, & gt;, >=, <, & lt;=, like, ilike, in, not in, child_of, paren...
分类:
其他好文 时间:
2014-07-16 19:37:32
阅读次数:
214
用于打印杨辉三角的程序,有多种算法仅提供一种PRogram yh (input,ouput);var m,n,c:integer;BeginFor m:=0 TO 10 Do Begin c:=1; write(c:40-3*m); For n:=1 To m Do begin c:=c+(m-n+...
分类:
其他好文 时间:
2014-07-16 19:38:04
阅读次数:
148
$.each 和$(selector).each()的区别
分类:
其他好文 时间:
2014-07-16 19:38:12
阅读次数:
216