1.线性回归介绍X指训练数据的feature,beta指待估计得参数。详细见http://zh.wikipedia.org/wiki/%E4%B8%80%E8%88%AC%E7%BA%BF%E6%80%A7%E6%A8%A1%E5%9E%8B使用最小二乘法拟合的普通线性回归是数据建模的基本方法。令最...
分类:
其他好文 时间:
2014-06-07 01:02:30
阅读次数:
458
Givennpoints on a 2D plane, find the maximum
number of points that lie on the same straight line./** * Definition for a
point. * struct Point { * ...
分类:
其他好文 时间:
2014-06-07 00:31:01
阅读次数:
233
The definition of canonical structure
$\mathbf{\alpha}$ for $\mathbf{T}$ 规范结构的定义
分类:
其他好文 时间:
2014-06-04 16:33:35
阅读次数:
278
The right-hand sides of n-ary function and
predicate definition in canonical structure depend only on the
$\mathbf{a_i^{\circ}}$ and not on the $\math...
分类:
其他好文 时间:
2014-06-04 15:49:48
阅读次数:
179
Multiple Monitors and Video Present Networks
这一篇写点VidPN的东西.
微软对SAMPLE CODE的解释/描述是越来越"吝啬"了. 至少,以前从WDK/DDK中拿一个SAMPLE出来,看一看,改一改,试一试,还能玩一玩, 从实际驱动跑起来去了解驱动的工作情况.
有了一个比较感性的认识后,再去深入细致地看代码, 或者有目地性地改代码, ...
分类:
其他好文 时间:
2014-06-03 04:12:42
阅读次数:
278
题目链接又是一个考察对链表基本操作的题目附上代码: 1 /** 2 * Definition for
singly-linked list. 3 * struct ListNode { 4 * int val; 5 * ListNode *next; 6 *
Lis...
分类:
其他好文 时间:
2014-06-02 12:00:52
阅读次数:
226
递归一下
/**
* Definition for singly-linked list.
* struct ListNode {
* int val;
* ListNode *next;
* ListNode(int x) : val(x), next(NULL) {}
* };
*/
class Solution {
public:
Li...
分类:
其他好文 时间:
2014-06-01 17:35:40
阅读次数:
406
DML(Data Manipulation
Language)数据操纵语言:适用范围:对数据库中的数据进行一些简单操作,如insert,delete,update,select等.DDL(Data
Definition Language)数据定义语言:适用范围:对数据库中的某些对象(例如,datab...
分类:
其他好文 时间:
2014-06-01 11:45:59
阅读次数:
250
第3个版本用浮点数计算平均值,并且添加了小数位固定和强制类型转换3个文件GradeBook.h//
GradeBook.h// Definition of class GradeBook that determines a class average.//
Member functions are ...
分类:
其他好文 时间:
2014-06-01 11:34:10
阅读次数:
340
Given a linked list, reverse the nodes of a linked list k at a time and return its modified list.
If the number of nodes is not a multiple of k then left-out nodes in the end should remain as it is...
分类:
其他好文 时间:
2014-06-01 09:05:42
阅读次数:
271