求路径中权重最小的点
#include
#include
#include
#include
#include
using namespace std;
typedef long long ll;
#define N 80010
int vis[N],mark[N],first[N],ver[N*2];
int val[N];
int dis[N];
int deep[N*2];
i...
分类:
其他好文 时间:
2014-12-14 09:29:40
阅读次数:
156
2014中国大数据技术大会 会议记录:1、落地、跨界、效率、领导见面就谈大数据;2、大数据成为主流产业需要5到10年;3、数据是表象,实质是问题;4、Doug Cutting:Fuel for change:data, EDH, Style catches on:ecosySystem, the Data Multi-Tool, Cloudera; 1、白皮书,发展趋势;2、融合,跨界,基础,突破...
分类:
其他好文 时间:
2014-12-13 20:36:12
阅读次数:
246
Apache Hadoop YARN: Moving beyond MapReduce and Batch Processing with Apache Hadoop 2
Apache Hadoop YARN: Moving beyond MapReduce and Batch Processing with Apache Hadoop 2 .mobi: http://www....
分类:
Web程序 时间:
2014-12-13 19:26:27
阅读次数:
180
更确切的是读http://www.cnblogs.com/tornadomeet/archive/2013/03/14/2959138.html 写得博客的读后感加自己的理解。蓝色字体是自己的理解。模型表达就是给出输入和输出之间的函数关系式,当然这个函数是有前提假设的,里面可以含有参数。此时如果有许...
分类:
其他好文 时间:
2014-12-13 17:39:56
阅读次数:
262
持续更新中……DLT是香港科大的Naiyan Wang和Dit-Yan Yeung提出的,文章和代码见 http://winsty.net/dlt.html相关论文是 Learning A Deep Compact Image Representation for Visual Tracking (...
分类:
其他好文 时间:
2014-12-13 16:29:26
阅读次数:
249
使用theano编写Logistic Regression程序,进行二分类,初学者可以参考。...
分类:
其他好文 时间:
2014-12-13 10:56:30
阅读次数:
292
题目
A linked list is given such that each node contains an additional random pointer which could point to
any node in the list or null.
Return a deep copy of the list.
解答
题目要求拷贝一个链表,该链表除了一个next...
分类:
其他好文 时间:
2014-12-12 16:45:27
阅读次数:
210
A linked list is given such that each node contains an additional random pointer which could point to any node in the list or null.Return a deep copy ...
分类:
其他好文 时间:
2014-12-12 06:40:38
阅读次数:
205
PortFast:加快主机连接入stp网络的收敛速度.一个端口如果设置为Portfast,该端口不参与生成树计算。主要用在在交换机与主机相连的端口,不应该在交换机与交换机,路由器,hub互连的网络设备的端口使用。在STP中,port有5个状态:disable、blocking、listening、learning、forward..
分类:
其他好文 时间:
2014-12-11 19:28:39
阅读次数:
167
第二讲介绍了Perceptron Learning Algorithm (PLA),是以后学习的基础。PLA是二元的线性分类器,类似于神经感受器,用于做是非题。1. PLA的假设函数:h(x) = sign(w'x)。 这里w'是列向量,x是行向量。x代表一个数据点,这个点可能包含了d个维度,即x....
分类:
其他好文 时间:
2014-12-11 13:55:09
阅读次数:
281