上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 255 下一页
摘要: 文件夹 1Bayesian model selection贝叶斯模型选择 1奥卡姆剃刀Occams razor原理 2Computing the marginal likelihood evidence 2-1 BIC approximation to log marginal likelihood 阅读全文
posted @ 2018-04-09 10:19 zhchoutai 阅读(718) 评论(0) 推荐(0) 编辑
摘要: 题目: Given a binary tree, return the postorder traversal of its nodes' values. For example: Given binary tree {1,#,2,3}, 1 \ 2 / 3 return [3,2,1]. Note 阅读全文
posted @ 2018-04-09 09:10 zhchoutai 阅读(182) 评论(0) 推荐(0) 编辑
摘要: 机器角色分配和拓扑环境例如以下: 配置副本集s1 1.创建文件夹 在s1h1上创建例如以下文件夹 [root@node3 db]# mkdir -p /db/s1/conf [root@node3 db]# mkdir -p /db/s1/data [root@node3 db]# mkdir -p 阅读全文
posted @ 2018-04-09 08:10 zhchoutai 阅读(439) 评论(0) 推荐(0) 编辑
摘要: //给一个n*m的地图。坦克从(0 , 0)開始走 //#表示墙不能走,*表示传送门能够传送到指定地方,能够选择也能够选择不传送 //数字表示该格的矿石数, //坦克从(0,0)開始走。仅仅能往右和往下走。 //问最多能得到多少矿石 //直接建图,但因为有传送门。须要缩点 //然后用dfs直接搜一条 阅读全文
posted @ 2018-04-08 21:13 zhchoutai 阅读(137) 评论(0) 推荐(0) 编辑
摘要: 3Sum 题目 Given an array S of n integers, are there elements a,b,c in S such that a + b + c = 0? Find all unique triplets in the array which gives the s 阅读全文
posted @ 2018-04-08 20:06 zhchoutai 阅读(127) 评论(0) 推荐(0) 编辑
摘要: 1221: 高考签到题 Time Limit: 1 Sec Memory Limit: 128 MBSubmit: 9 Solved: 4 [Submit][Status][Web Board] Description 在直角坐标系中有一条抛物线y=ax^2+bx+c和一个点P(x,y),求点P到抛 阅读全文
posted @ 2018-04-08 19:05 zhchoutai 阅读(127) 评论(0) 推荐(0) 编辑
摘要: (JDK的下载安装及第一个程序执行) 内容:Java JDK 的安装以及HelloWorld 程序的执行 欢迎童鞋们前往围观 http://v.youku.com/v_show/id_XODA3MzkzNzMy.html 很多其它内容分享请关注 我的博客 http://www.xiaozhangwx 阅读全文
posted @ 2018-04-08 17:52 zhchoutai 阅读(134) 评论(0) 推荐(0) 编辑
摘要: 文档版本号 开发工具 測试平台 project名字 日期 作者 备注 V1.0 2016.03.24 lutianfei none 登录注冊IO版 例如以下代码仅为UserDaoImpl类文件,其它原码參考day22_login_registproject public class UserDaoI 阅读全文
posted @ 2018-04-08 16:56 zhchoutai 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 尽管有非常多第三方工具(Alfred、keyboad Maestro)能够设置全局启动terminal快捷键,但怎么感觉都不如native的好,呵呵。本文就使用mac 自带的Automator来创建一个launch application的服务,然后在系统偏好设置中keyboard设置service 阅读全文
posted @ 2018-04-08 16:18 zhchoutai 阅读(396) 评论(0) 推荐(0) 编辑
摘要: 题目:编辑距离。给你两个串,将已知串转化成目标串,能够增、删、改字母,求最小操作次数。 分析:dp,编辑距离。同最大公共子序列。注意操作位置是实时变化的。(前面都已经处理好了) f[i][j] = f[i-1][j] 这时删掉 str1[i],位置j+1。 f[i][j] = f[i][j-1] 这 阅读全文
posted @ 2018-04-08 15:27 zhchoutai 阅读(238) 评论(0) 推荐(0) 编辑
上一页 1 ··· 15 16 17 18 19 20 21 22 23 ··· 255 下一页