应用线性回归,美 S. Weisberg,中国统计出版社,王静龙 / 梁小筠 / 李宝慧译;Applied Linear Regression,SANFORD WEISBERG;Linear Regression Analysis,GEORGE A. F. SEBER and ALANJ.LEE;r...
分类:
其他好文 时间:
2015-10-13 16:50:28
阅读次数:
228
LeakCanary:https://github.com/square/leakcanary(中文http://www.liaohuqiu.net/cn/posts/leak-canary-read-me/)。MAT:http://android-developers.blogspot.pt/2011/03/memory-analysis-for-android.html(中文http://androidperformance.com/2015/04/11/AndroidMemory-Usage..
分类:
移动开发 时间:
2015-10-12 15:50:46
阅读次数:
169
[Problem]Write a function to find the longest common prefix string amongst an array of strings.[Analysis]思路非常简单,循环验证每一个字符串就可以通过OJ,代码也没有优化。[Solution]pu...
分类:
其他好文 时间:
2015-10-10 00:11:15
阅读次数:
195
[Problem]Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.[Analysis]建立一个字符到数字的map之后只需要抓住两个条件:...
分类:
其他好文 时间:
2015-10-09 22:56:07
阅读次数:
168
前两天在微软下载了官方示例数据库AdventureWorksDW2008R2及它的OLAP项目:AdventureWorks 2008R2 Analysis Services Project 《大家可以去微软下载》今天在BIDS部署处理多维数据集的时候出现了部署错误警告:2382 错误,参考了htt...
分类:
数据库 时间:
2015-10-08 16:10:34
阅读次数:
254
1. BFS2. QuickSort3. principle of analysis, 1000 articles, so many factors, how to reduce factors.4. newton's method5. multiple thread synchronized6. ...
分类:
其他好文 时间:
2015-10-08 01:45:56
阅读次数:
195
离2.6.31内核开始。linux核心配备了性能分析工具perf,它可以是功能级和指令级热外表。perfPerformance analysis tools for Linux.Performance counters for Linux are a new kernel-based subsyst...
分类:
其他好文 时间:
2015-10-03 09:28:31
阅读次数:
223
PCA的数学原理PCA(Principal Component Analysis)是一种常用的数据分析方法。PCA通过线性变换将原始数据变换为一组各维度线性无关的表示,可用于提取数据的主要特征分量,常用于高维数据的降维。网上关于PCA的文章有很多,但是大多数只描述了PCA的分析过程,而没有讲述其中的...
分类:
其他好文 时间:
2015-10-02 19:57:54
阅读次数:
259
[Problem]Reverse digits of an integer.Example1:x = 123, return 321Example2:x = -123, return -321[Analysis]这题不难,关键是要注意overflow的处理,因为reverse后的数字有可能超出Int...
分类:
其他好文 时间:
2015-10-02 01:22:40
阅读次数:
172
#! /usr/bin/env python ###### Linked List python implementation###### @reference Data Structures and Algorithm Analysis in C:Second Edition : Mark All...
分类:
编程语言 时间:
2015-09-30 12:44:23
阅读次数:
223