Principles of training multi-layer neural network using backpropagation http://galaxy.agh.edu.pl/~vlsi/AI/backp_t_en/backprop.html The project describ ...
分类:
Web程序 时间:
2017-03-31 20:05:46
阅读次数:
351
这几天面试;(面试的时候,没准备什么东西,因为最近很累,就带了个身体过去的,基本没带脑子去了)好了,我们技术面的差不多了。 我再问你个问题; oracle 中的事务? 事务你给我说说; 我去,事务,你想知道事务的什么? 事务的四个特性? 事务是干嘛的? 还是什么? 事务 面试官就很淡淡的说,事务就是 ...
分类:
数据库 时间:
2017-03-22 00:50:43
阅读次数:
161
在成功安装SublimeLinter-lua与luacheck以后,如果没有语法error,则会进行警告提示. 如下图 waring: line contains trailing whitespace. 这样的警告在项目代码里太多了,虽然sublime能够自动去除trailing,但是考虑到其他同 ...
分类:
其他好文 时间:
2017-03-21 00:03:05
阅读次数:
3120
[SPOJ7258]Lexicographical Substring Search 试题描述 Little Daniel loves to play with strings! He always finds different ways to have fun with strings! Kno ...
分类:
其他好文 时间:
2017-03-13 20:11:29
阅读次数:
201
Problem Description I have a very simple problem for you. Given two integers A and B, your job is to calculate the Sum of A + B. Input The first line ...
分类:
其他好文 时间:
2017-03-09 23:07:23
阅读次数:
226
Uniform Resource Identifiers (or URIs) are strings like http://icpc.baylor.edu/icpc/, mailto:foo@bar.org, ftp://127.0.0.1/pub/linux, or even just read ...
分类:
其他好文 时间:
2017-03-08 19:18:19
阅读次数:
164
A binary tree is a finite set of vertices that is either empty or consists of a root r and two disjoint binary trees called the left and right subtree ...
分类:
其他好文 时间:
2017-03-01 00:27:12
阅读次数:
233
题意: n<=100 len[i]<=1000 思路:这是一道论文题 ...
分类:
编程语言 时间:
2017-02-21 11:41:32
阅读次数:
196
题意:求一个字符串的最长回文子串 n<=1000 思路:这是一道论文题 需要注意的细节: 1.奇偶分类 2.中间的分割符与最后的附加字母都是最小值,但两者不能相同,否则height可能会出现问题 答案即为min(height[rank[x]+1]...height[rank[y]]) ...
分类:
编程语言 时间:
2017-02-20 07:44:05
阅读次数:
235
题意:求一个字符串的不相同的子串个数 n<=1000 思路:这是一道论文题 ...
分类:
编程语言 时间:
2017-02-18 10:44:50
阅读次数:
215