摘要: 生物神经网络基础概念,包括神经元结构(细胞体,轴突,树突,突触,神经递质)和神经系统的电活动(静息电位,动作电位)。 阅读全文
posted @ 2015-05-20 14:42 m_CHaN 阅读(7155) 评论(0) 推荐(0) 编辑
摘要: 隐藏层的提出是伴随着多级网络的概念一起提出的,它主要解决一个线性不可分问题. 阅读全文
posted @ 2015-05-15 17:47 m_CHaN 阅读(14201) 评论(0) 推荐(0) 编辑
摘要: Given a sorted array, remove the duplicates in place such that each element appear only once and return the new length. Do not allocate extra space for another array, you must do this in place with constant memory. 去掉数组重复数字,常数空间限制。 阅读全文
posted @ 2015-05-15 12:50 m_CHaN 阅读(153) 评论(0) 推荐(0) 编辑
摘要: The count-and-say sequence is the sequence of integers beginning as follows: 1, 11, 21, 1211, 111221, ... 1 is read off as "one 1" or 11. 11 is read off as "two 1s" or 21. 21 is read off as "one 2, then one 1" or 1211. Given an integer n, generate the nth sequence. 阅读全文
posted @ 2015-05-15 10:45 m_CHaN 阅读(191) 评论(0) 推荐(0) 编辑
摘要: Write a function to find the longest common prefix string amongst an array of strings. 阅读全文
posted @ 2015-05-14 18:52 m_CHaN 阅读(173) 评论(0) 推荐(0) 编辑