courses
文章平均质量分 60
sevenseablue
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
bayesian classifier
instancesTweet / CommentSentiment2000My phone is really bad and gives me lots of troublenegative原创 2013-09-06 17:09:11 · 829 阅读 · 0 评论 -
算法课_算法分析_
算法课_算法分析_O(n^2),O(nlgn),O(n)t=an^b+cgiven two groups of t and n, the b can be calculucated by lg(t2-t1)=blgn+lga, assuming that t and n are large enough.空间复杂度Questi原创 2013-09-05 08:10:21 · 1876 阅读 · 0 评论 -
2lgN for ditonic array search
2lgN for ditonic array searchI have solutions for both the 3lgN and 2lgN algorithms for finding an element in a bitonic array. So if you are still working on this, don't read further. I've cod转载 2013-09-06 19:31:23 · 2348 阅读 · 1 评论 -
算法课_归并排序应用
Question 1Merging with smaller auxiliary array. Suppose that the subarray a[0] to a[N-1] is sorted and the subarray a[N] to a[2*N-1] is sorted. How can you merge the two subarrays so that a[0] t翻译 2013-09-10 09:03:03 · 1492 阅读 · 0 评论 -
算法课_unionfind_并查集
并查集连接的定义:1. a连接b,则b连接a。对称性2. a连接b,b连接c,则a连接c。传递性并查集的作用:判断两个点是否连接;找出所有连接着的集合应用举例:连通,10x10的网格,白表示空,黑表示障碍,是否有一条路从第一行走到第十行?转化为:是否存在第一行中的任意一点A,第十行的任意一点B,AB是连接的。对每一个点,将他上下左右相邻的点的原创 2013-09-04 12:04:57 · 3224 阅读 · 0 评论 -
introduction to computer vision
introductionps0ps0 imread imwirte zeros(size()) generates a double matrix, and when imwrite the maxtrix to file, matlab will convert double to [0,1], and convert to [0, 255], and finally the ima原创 2015-11-21 11:25:07 · 664 阅读 · 0 评论
分享