照例继续本周笔记。这次我没啥废话了...
--------------笔记开始---------------
投影矩阵与消灭矩阵
首先是上次没证的若干OLS性质。基本都是公式。我就照抄原来econometrics做的笔记了。权当复习了...对计量有兴趣的、线性代数还不错的,建议去看《Microeconometrics- Methods and Applications》(?A.
...
分类:
其他好文 时间:
2014-10-31 17:18:38
阅读次数:
268
通过StringHolder 这个类来实现返回值。
可是通过Client 端调用有发现,无法取得这个值。
首先把这个问题的解法给出来: 把Elements 中 Request 和 Response 的名字设成大写
1. 当把Elements 中 Request 和 Response 的名字设成小写, 返回值以StringHolder实现
2. 当把Elements 中 Request 和 Response 的名字设成小写, 返回值产生新的Class实现...
分类:
Web程序 时间:
2014-10-31 13:54:09
阅读次数:
276
【题目】
Given an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d =
target? Find all unique quadruplets in the array which gives the sum of target.
Note:
...
分类:
其他好文 时间:
2014-10-31 12:02:18
阅读次数:
261
Given an array and a value, remove all instances of that value in place and return the new length.
The order of elements can be changed. It doesn't matter what you leave beyond the new length.
方...
分类:
其他好文 时间:
2014-10-31 08:48:26
阅读次数:
225
问题描述:
Given an array and a value, remove all instances of that value in place and return the new length.
The order of elements can be changed. It doesn't matter what you leave beyond the new lengt...
分类:
其他好文 时间:
2014-10-30 21:04:59
阅读次数:
168
题目描述:
Given an array where elements are sorted in ascending order, convert it to a height balanced BST.
思路:采用类似折半查找的方式找到当前根节点,则当前根节点左边的属于它的左子树部分,当前根节点右边的属于它的右子树部分。再采用同样的方法,递归地对当前根节点的左右子树做相同的处理。
...
分类:
其他好文 时间:
2014-10-30 19:22:04
阅读次数:
197
题目描述:
Given an array and a value, remove all instances of that value in place and return the new length.
The order of elements can be changed. It doesn't matter what you leave beyond the new l...
分类:
其他好文 时间:
2014-10-30 17:08:19
阅读次数:
153
# 题目 > Given an unsorted array of integers, find the length of the longest consecutive elements sequence. > For example, > Given [100, 4, 200, 1, 3, 2], > The longest consecutive elements sequenc...
分类:
其他好文 时间:
2014-10-30 12:01:47
阅读次数:
221
Convert Sorted List to Binary Search TreeGiven a singly linked list where elements are sorted in ascending order, convert it to a height balanced BST....
分类:
其他好文 时间:
2014-10-30 10:55:20
阅读次数:
151
JS解析XML文件JS解析XML字符串测试XML112233445566使用方法var xmldoc=loadXML(text.xml)var elements = xmlDoc.getElementsByTagName("Company");for (var i = 0; i < elements...
分类:
Web程序 时间:
2014-10-29 23:37:58
阅读次数:
159