摘要: 找到以前的微博小号,发现了自己不知道哪里抄录的句子。我希望你也在你笃信的路上走得顺利,我希望你终将找到那个真正跟你灵魂相依的人并与之相伴,我希望你觉得生活虽然会有痛苦但始终是充满希望和有意义的。而这些,也是我对自己的要求和希望。希望你健康快乐,幸福长寿。真心的。即使以后什么都变了,你不再年轻,我也是... 阅读全文
posted @ 2014-08-06 01:01 Phoebe815 阅读(252) 评论(0) 推荐(0) 编辑
摘要: Understand limitations of floating point representations.Never check for equality with ==. Instead, check if the difference is less than an epsilon va... 阅读全文
posted @ 2014-08-04 13:13 Phoebe815 阅读(137) 评论(0) 推荐(0) 编辑
摘要: http://bbs.tianya.cn/post-funinfo-5583784-4.shtml#ty_vip_look[%E8%90%BD%E8%8A%B1%E6%97%A0%E5%BF%83%E4%BA%BA%E6%9C%89%E6%84%8F] 阅读全文
posted @ 2014-07-10 17:59 Phoebe815 阅读(90) 评论(0) 推荐(0) 编辑
摘要: pros:1. 韩顺平课结束,择日开始做weidou吧。。。2. 跟上了地里的刷cc150题的进度3. 马上就要拿到第一张coursera的证书啦*^__^*4. 签证,机票解决cons:1. leetcode很久没动了。。。2. coursera上的公开课有点掉队,这礼拜要补上3. 隐形眼镜,眼镜... 阅读全文
posted @ 2014-06-29 22:08 Phoebe815 阅读(108) 评论(0) 推荐(0) 编辑
摘要: 有用的链接:http://blog.csdn.net/yunlong34574/article/details/8851942 阅读全文
posted @ 2014-06-22 18:40 Phoebe815 阅读(154) 评论(0) 推荐(0) 编辑
摘要: 转载http://blog.csdn.net/yutianzuijin/article/details/11954939kmp算法又称“看毛片”算法,是一个效率非常高的字符串匹配算法。不过由于其难以理解,所以在很长的一段时间内一直没有搞懂。虽然网上有很多资料,但是鲜见好的博客能简单明了地将其讲清楚。... 阅读全文
posted @ 2014-06-19 16:01 Phoebe815 阅读(137) 评论(0) 推荐(0) 编辑
摘要: Question:There are two sorted arrays A and B of size m and n respectively. Find the median of the two sorted arrays. The overall run time complexity s... 阅读全文
posted @ 2014-06-18 19:14 Phoebe815 阅读(219) 评论(0) 推荐(0) 编辑
摘要: 1 public class PercolationStats { 2 3 private int N; 4 private int T; 5 private double[] results; 6 7 public PercolationStats(int N... 阅读全文
posted @ 2014-06-16 17:53 Phoebe815 阅读(709) 评论(0) 推荐(0) 编辑
摘要: 1 public class Percolation { 2 private boolean[] openSites; 3 private int gridN; 4 private WeightedQuickUnionUF UF; 5 private We... 阅读全文
posted @ 2014-06-16 17:50 Phoebe815 阅读(543) 评论(0) 推荐(0) 编辑
摘要: Question:Given a binary tree, find the maximum path sum.The path may start and end at any node in the tree.For example:Given the below binary tree, ... 阅读全文
posted @ 2014-06-13 18:56 Phoebe815 阅读(140) 评论(0) 推荐(0) 编辑