03 2015 档案
摘要:a=a+(a++);013913BC mov eax,dword ptr [a] 013913BF add eax,dword ptr [a] 013913C2 mov dword ptr [a],eax 013913C5 mov...
阅读全文
摘要:1 #include 2 3 using namespace std; 4 5 class Base 6 { 7 public: 8 Base(int i){cout <<i<<' '<<"Base"<<endl;} 9 ~Base(){}10 };11 12 class B...
阅读全文
摘要:在做分类时常常需要估算不同样本之间的相似性度量(Similarity Measurement),这时通常采用的方法就是计算样本间的“距离”(Distance)。采用什么样的方法计算距离是很讲究,甚至关系到分类的正确与否。 本文的目的就是对常用的相似性度量作一个总结。本文目录:1. 欧氏距离2. 曼...
阅读全文