从http://libgdx.badlogicgames.com/releases/下载zip包并解压,切换到解压后的目录,执行:java -cp gdx.jar;gdx-natives.jar;gdx-backend-lwjgl.jar;gdx-backend-lwjgl-natives.jar;...
分类:
其他好文 时间:
2015-05-14 00:36:34
阅读次数:
156
1.将公式中的distance具体化将$w_0$单独抽出作为$b$,$w=(w_1,...,w_n),x=(x_1,...,x_n)$则分割平面为:$w^Tx+b=0$A.证明w为法向量 设两点$x',x''$都在平面上,所以有 $w^Tx'=w^Tx''=-b$ $w^T(x'-x'')=0$ 可...
分类:
其他好文 时间:
2015-05-13 18:54:02
阅读次数:
122
Test for JobTime Limit:5000MSMemory Limit:65536KTotal Submissions:9563Accepted:2201DescriptionMr.Dog was fired by his company. In order to support his...
分类:
其他好文 时间:
2015-05-13 18:24:50
阅读次数:
89
Dog *d = [Dog new];//查看对象地址NSLog(@"\n d= %p ",d);//打印的为地址 例:0x1001002e0//查看对象实例变量的值NSLog(@"\n %d",[d age]);//打印d的对象NSLog(@"\n@=",d); //例 调用了对象的 descr....
分类:
其他好文 时间:
2015-05-13 12:40:47
阅读次数:
105
概述: 可以简单地给代码进行一个分组,方便代码的查找(可以不用记,无所谓的小东西)例如: #pragma mark dog类的声明 @interface Dog :NSObject @end @implementation Dog @end#pragma mark - //给内容加个空...
分类:
其他好文 时间:
2015-05-13 12:11:14
阅读次数:
96
创建一个类名为 dog 为他添加一个age属性 一下为main函数代码#import #import "dog.h"int main(){ dog *dog1 = [dog new] ; id d = [dog new]; [d setAge:10]; NSLog(@"%...
分类:
其他好文 时间:
2015-05-12 22:43:34
阅读次数:
133
Edit Distance问题:Given two wordsword1andword2, find the minimum number of steps required to convertword1toword2. (each operation is counted as 1 step.)...
分类:
其他好文 时间:
2015-05-10 12:48:42
阅读次数:
98
# -*- coding: utf-8 -*-
#utf-8支持中文编码
words=['cat','dog','chicken']
for w in words[:]: #words[:]复制了原本的list
words.insert(0, w)
print words
a = range(0,10,4)
print a
args=[3,10,3]
pr...
分类:
编程语言 时间:
2015-05-09 15:06:19
阅读次数:
141
Definition of distance between data: (1) Hamming Distance:d(i,j)=sum(abs(x(i,k)-x(j,k))) | k from 1 to m (2) Euclid Distance:d(i,j)=sum((x(i,k)-x(j,k)...
分类:
其他好文 时间:
2015-05-07 20:17:51
阅读次数:
137
求两节点之间的距离,直接上Tarjan跑一遍。和上一题差不多就不说了。。 主要就是这里询问很多,用vector跑的很慢,无奈还不会邻接表,赶紧去学。。 1 #include 2 #include 3 #include 4 #include 5 #include ...
分类:
其他好文 时间:
2015-05-07 15:52:47
阅读次数:
133