Calculate the Distance Between Two Points in PHPThere are a lot of applications where it is useful to know the distance between two coordinates. Here,...
分类:
Web程序 时间:
2015-01-12 15:59:17
阅读次数:
267
如果我们一次只能搜索一个词,那么全文搜索就会显得相当不灵活。幸运的是,通过match查询来实现多词查询也同样简单:GET /my_index/my_type/_search{ "query": { "match": { "title": "BROWN DOG...
分类:
其他好文 时间:
2015-01-11 22:51:47
阅读次数:
308
通过firefox+ProxySelector+dtunnel_lite实现代理上网dtunnel_lite:http://dog-tunnel.tk/下载lite版本就可以远端:./dtunnel_lite -service :1234 -auth pswd -action sock5本机./dt...
分类:
其他好文 时间:
2015-01-11 19:04:54
阅读次数:
637
Given two words word1 and word2, find the minimum number of steps required to convert word1 to word2. (each operation is counted as 1 step.)
You have the following 3 operations permitted on a word:
a) Insert a character
b) Delete a character
c) Replace a...
分类:
其他好文 时间:
2015-01-10 18:15:43
阅读次数:
181
理解并配置动态路由协议RIPRIP(RoutingInformationProtocol)是应用较早、使用较普遍的内部网关协议(InteriorGatewayProtocol,IGP),适用于小型网络,是典型的距离矢量(Distance-Vector)路由协议,是一种单纯的向邻居路由器发送自己路由表中路由记录的动态路由协议,它不..
分类:
其他好文 时间:
2015-01-08 15:37:53
阅读次数:
126
Razor可以识别尖括号,且关键词是@,默认情况下会对输出的html代码进行转义 1.C#代码 用 @ 加 中括号 包起来 @{ for (int i = 0; i C#语句块要用大括号 括起来 } } 2.Razor输出要使用小括号 @(ViewBag.Dog).Dog
输出 结果为: gougo...
分类:
其他好文 时间:
2015-01-07 20:35:43
阅读次数:
165
一:
具体使用的细节,本人也是参考http://blog.163.com/wkyuyang_001/blog/static/10802122820133190545227/
下面介绍具体使用Quartz 2D绘图实现画图板功能
.m文件中,dog的实现如连接中所示一样的
#import "drawTestView.h"
#import "Dog.h"
@implementation dr...
分类:
移动开发 时间:
2015-01-07 18:46:32
阅读次数:
199
题目大意:给定一棵树,边上有边权,m次询问,每次选定一些关键点,求将1号节点与所有关键点都切断所需的最小花销
关键点的总数
首先我们考虑暴力想法
令f[x]表示切断以x为根的子树中所有关键点的最小花销
g[x]表示x是不是关键点
那么对于x的每个子节点y有f[x]=Σmin(g[y]?INF:f[y],Distance(x,y) )
这样每次暴力做一遍树形DP,时间复杂度是O(n*...
分类:
其他好文 时间:
2015-01-07 16:57:32
阅读次数:
180
在PHP删除数组中空值的方法介绍foreach循环的效率不高,消耗太大array_filter(array,function)例子<?php
functionmyfunction($v)
{
if($v==="Horse")
{
returntrue;
}
returnfalse;
}
$a=array(0=>"Dog",1=>"Cat",2=>"Horse");
print_r(array_filter($a,"myfunc..
分类:
Web程序 时间:
2015-01-06 12:10:11
阅读次数:
211
https://oj.leetcode.com/problems/edit-distance/http://blog.csdn.net/linhuanmars/article/details/24213795publicclassSolution{
publicintminDistance(Stringword1,Stringword2)
{
if(word1==null||word2==null)
return-1;
if(word1.isEmpty())
returnword2.length();//I..
分类:
其他好文 时间:
2015-01-04 19:40:46
阅读次数:
148