#数组的声明与遍历 animals=("a dog" "a cat" "a fish") #wrong ways to use this for i in ${animals[*]}; do echo $i; done for i in ${animals[@]}; do echo $i; done...
分类:
系统相关 时间:
2015-08-16 22:48:08
阅读次数:
212
Swift中属性的用法比objective-c中属性的用法丰富了很多。下面我逐一介绍。
一、 存储属性 和 延迟存储属性
Demo如下:
class Dog {
var name = "旺财"
init(){
println("狗被初始化了")
}
}
class Person {
let age = 20
var name = "J...
分类:
编程语言 时间:
2015-08-16 12:23:07
阅读次数:
113
很多时候,if...else...有很多判断分支选项,就会见到:if (animal === 'dog') { // TO DO 'dog'} else if (animal === 'cat') { // TO DO 'cat' } else if (animal === 'bird') {...
分类:
其他好文 时间:
2015-08-15 22:50:57
阅读次数:
182
from?https://leetcode.com/problems/one-edit-distance/ 正如摘要所说,edit distance是通过变换某些位置的字符使得两个字符串相同的操作数;而该问题是一个比较有名的动态规划问题;分别用s和t表示两个字符串,...
分类:
其他好文 时间:
2015-08-15 18:37:50
阅读次数:
107
使用bitmap font 时有一个缺陷就是在字体缩放时, 会显示出明显的锯齿. 所以, 通常会为某种字体创建诸如 small ,normal ,big 等不同大小的字体以应对不同的缩放区间.这样会造成巨大的内存开销.value 的论文 http://www.valvesoftware.com/pu...
分类:
其他好文 时间:
2015-08-15 16:09:06
阅读次数:
172
假设在有向图中从起点到s,到终点t的最短路径长度为distance,,最短路径的条数为kinds。对于某条有向边E(i, j),如果该条边一定被从s到t的最短路径经过,那么首先需要满足:dis(s, i)+dis(i, j) + dis(j, t) == dis(s, t);
//其中dis(a, b)表示从a到b的最短路径
其次还需要满足kinds(s, i) + kinds(j, t) =...
分类:
其他好文 时间:
2015-08-14 21:27:28
阅读次数:
119
Description
Many years ago , in Teddy’s hometown there was a man who was called “Bone Collector”. This man like to collect varies of bones , such as dog’s , cow’s , also he went to the grave …
T...
分类:
其他好文 时间:
2015-08-13 12:11:33
阅读次数:
146
Algorithm:Refrence from one ICML15 paper: Word Mover's Distance.1. First use Google's word2vec tool to get distributed word representing aka. word vec...
分类:
其他好文 时间:
2015-08-12 23:22:04
阅读次数:
191
数据库环境:SQL SERVER 2005 如题,现有bus表数据如下,dstart是起点,dend是终点,distance是两地的距离。求从A地出发到各个地方的距离。有经验的人一看,就知道题目关于树形查询的。SQL SERVER 2005数据库没有提供树形查询相关的函数,因此,可以通过CTE递归实...
分类:
其他好文 时间:
2015-08-11 20:50:25
阅读次数:
127
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 t...
分类:
其他好文 时间:
2015-08-11 18:23:38
阅读次数:
116