摘要: Determine whether an integer is a palindrome. Do this without extra space. 判断是否是回文数。.如:98789返回true。 提示: 1)负数不是回文数,如-123 ‘-’不等于‘3’ 2)不能使用额外空间的意思是,不管输入的 阅读全文
posted @ 2017-11-06 19:31 hozhangel 阅读(136) 评论(0) 推荐(0) 编辑
摘要: http://mp.weixin.qq.com/s/4gElB_8AveWuDVjtLw5JUA sigmoid函数: 导数推导: 所以sigmoid的倒数 y' = 1 - y。 其他激活函数及其导数: rectifier(x) = max(0, x) rectifier 函数被认为有生物上的解释 阅读全文
posted @ 2017-11-05 21:04 hozhangel 阅读(850) 评论(0) 推荐(0) 编辑
摘要: (会持续更新) 0-1 损失函数 交叉熵损失函数 平方损失函数 Hinge 损失函数 阅读全文
posted @ 2017-11-05 21:02 hozhangel 阅读(1965) 评论(0) 推荐(0) 编辑
摘要: 例子来自:Prolog是如何回答问题的 请看下图: 我们的目的是要在上面表格中白色的方格(带有LXX标识的方格)里面填上英文单词,可供选择的单词有: 试着写出一个规则solution. 应该这么写: 写prolog文件word.pl的代码: 运行结果: 即 1 forum;2 vanish ;3 f 阅读全文
posted @ 2017-11-03 16:16 hozhangel 阅读(1802) 评论(0) 推荐(0) 编辑
摘要: 进入和退出: $prolog 进入prolog 输入halt. 退出prolog,同时不要忘记“.” 语句解释: 执行文件: 法1、prolog 1.pl 法2、先进入prolog再输入如下查询: 这里”consult”的意思是让SWI-Prolog加载你编写的程序,然后编译它。 输出语句: wri 阅读全文
posted @ 2017-11-03 14:24 hozhangel 阅读(944) 评论(0) 推荐(0) 编辑
摘要: 找到的好看的prolog教程: http://fengdidi.github.io/blog/2011/11/15/qian-yan/ https://www.w3cschool.cn/pzuxsk/1624vozt.html http://www.cnblogs.com/magialmoon/p/ 阅读全文
posted @ 2017-11-03 11:08 hozhangel 阅读(1704) 评论(0) 推荐(0) 编辑
摘要: Implement atoi to convert a string to an integer. Hint: Carefully consider all possible input cases. If you want a challenge, please do not see below 阅读全文
posted @ 2017-10-29 20:35 hozhangel 阅读(177) 评论(0) 推荐(0) 编辑
摘要: Reverse digits of an integer. Example1: x = 123, return 321Example2: x = -123, return -321 click to show spoilers. Note:The input is assumed to be a 3 阅读全文
posted @ 2017-10-29 20:01 hozhangel 阅读(308) 评论(0) 推荐(0) 编辑
摘要: 总结面试以来在网上看到的面试经验的链接收藏(会持续更新) 硕 2013年 知乎 求职bat栏目 双985硕(算法工程师(机器学习/数据挖掘)) 【中兴+华为+美团+海康威视+百度】(2016) 北京硕士面试经验·机器学习、深度学习、算法工程师(校招) 阅读全文
posted @ 2017-10-29 15:33 hozhangel 阅读(168) 评论(0) 推荐(0) 编辑
摘要: 看眼缘随机拿了一道不难的题https://leetcode.com/problems/add-digits/description/ Given a non-negative integer num, repeatedly add all its digits until the result ha 阅读全文
posted @ 2017-10-27 22:18 hozhangel 阅读(112) 评论(0) 推荐(0) 编辑