码迷,mamicode.com
首页 >  
搜索关键字:functions    ( 1849个结果
UVALive 2324 Human Gene Functions(动态规划)
题意:求出将两个字符串改成一样长度所能形成最大的相似度。 思路:这个可以说是编辑距离的一个变形,编辑距离最终状态时要两个字符串完全一致,这个就是要求长度一样,而且这个只允许插入“—”这一个字符。模仿编辑距离定义状态,dp[i][j]表示将第一个字符串的前i个字符与第二个字符串的前j个字符变为相同长度 ...
分类:其他好文   时间:2016-07-31 17:28:52    阅读次数:145
jQuery - Functions
Functions are the basic unit of action in jQuery. a function is made up of three parts: the function keyworld any inputs that funciton takes whatever ...
分类:Web程序   时间:2016-07-30 17:58:07    阅读次数:196
检测http服务(数组与函数)
catarray_check_url.sh#!/bin/bash#用数组与函数方式检查网站是否正常#version1.0#byanthorslrj2016-6-20./etc/init.d/functions#加载系统函数#定义数组存储网站url_list=(www.baidu.com192.168.131.10www.163.comwww.sina.com.cn)#定义等待函数functionwaiting(){echo-n‘3秒后..
分类:编程语言   时间:2016-07-29 19:17:25    阅读次数:189
Functions
Small The first rule of functions is that they should be small.The second rule of functions is that they should be smaller than that.Functions should ...
分类:其他好文   时间:2016-07-20 13:20:06    阅读次数:229
Linux系统调用和库函数调用的区别
Linux下对文件操作有两种方式:系统调用(system call)和库函数调用(Library functions)。系统调用实际上就是指最底层的一个调用,在linux程序设计里面就是底层调用的意思。面向的是硬件。而库函数调用则面向的是应用开发的,相当于应用程序的api,采用这样的方式有很多种原因 ...
分类:系统相关   时间:2016-07-19 09:18:41    阅读次数:159
PRML读书笔记——Introduction
1.1. Example: Polynomial Curve Fitting 1. Movitate a number of concepts: (1) linear models: Functions which are linear in the unknow parameters. Polyn ...
分类:其他好文   时间:2016-07-15 17:10:08    阅读次数:178
统计一个网段以及相应区段存活和宕机的ip
#!/bin/bash ./etc/init.d/functions start=$1 up=0 down=0 #addcolorfunction functioncolor() { RED_COLOR=‘\E[1;31m‘ GREEN_COLOR=‘\E[1;32m‘ YELLOW_COLOR=‘\E[1;33m‘ BLUE_COLOR=‘\E[1;34m‘ RES=‘\E[0m‘ } #judgeusagefunction functionjudge() { #axargs [$#-ne2]&&a..
分类:其他好文   时间:2016-07-13 23:32:42    阅读次数:156
php常用的操作
一. php配置 1.禁止一些函数disable_functions = eval,assert,popen,passthru,escapeshellarg,escapeshellcmd,passthru,exec,system,chroot,scandir,chgrp,chown,escapesh ...
分类:Web程序   时间:2016-07-13 22:51:28    阅读次数:194
导出DLLRegisterServer接口遇到的问题
I'm trying to add DLLRegisterServer and DLLUnregisterServer entry points to an existing DLL that is exporting other functions. I have the olectl.h hea... ...
分类:其他好文   时间:2016-07-13 13:43:10    阅读次数:150
一些PHP性能优化汇总
PHP优化对于PHP的优化主要是对php.ini中的相关主要参数进行合理调整和设置,以下我们就来看看php.ini中的一些对性能影响较大的参数应该如何设置。 # vi /etc/php.ini (1) PHP函数禁用找到: disable_functions =该选项可以设置哪些PHP函数是禁止使用 ...
分类:Web程序   时间:2016-07-13 06:47:23    阅读次数:220
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!