随笔分类 - algorithm
摘要:https://en.wikipedia.org/wiki/Two's_complement The two's-complement system has the advantage that the fundamental arithmetic operations of addition, s
阅读全文
摘要:http://norvig.com/spell-correct.html Feb 2007to August 2016 How to Write a Spelling Corrector One week in 2007, two friends (Dean and Bill) independen
阅读全文
摘要:Artificial Intelligence: A Modern Approach http://mindhacks.cn/2008/09/21/the-magical-bayesian-method/
阅读全文
摘要:https://en.wikipedia.org/wiki/Subset_sum_problem In computer science, the subset sum problem is an important problem in complexity theory and cryptogr
阅读全文
摘要:Computer Science An Overview _J. Glenn Brookshear _11th Edition Early work in artificial intelligence approached the subject in the context of explici
阅读全文
摘要:Computer Science An Overview _J. Glenn Brookshear _11th Edition For our example in Figure 11.7, we chose a starting configuration that produces amanag
阅读全文
摘要:Computer Science An Overview _J. Glenn Brookshear _11th Edition The conjecture that machines can be programmed to exhibit intelligent behavior isknown
阅读全文
摘要:Computer Science An Overview _J. Glenn Brookshear _11th Edition The task of understanding general images is usually approached as a two- step process:
阅读全文
摘要:Computer Science An Overview _J. Glenn Brookshear _11th Edition To appreciate the field of artificial intelligence, it is helpful to understand that i
阅读全文
摘要:Computer Science An Overview _J. Glenn Brookshear _11th Edition Over the years numerous variations of the basic index concept have been used.One varia
阅读全文
摘要:Computer Science An Overview _J. Glenn Brookshear _11th Edition Inherent in processing a sequential file is the need to detect when the end ofthe file
阅读全文
摘要:Computer Science An Overview _J. Glenn Brookshear _11th Edition To solve such problems, a DBMS could force transactions to execute intheir entirety on
阅读全文
摘要:package topologicalsort /* 现在你总共有 numCourses 门课需要选,记为 0 到 numCourses - 1。给你一个数组 prerequisites ,其中 prerequisites[i] = [ai, bi] ,表示在选修课程 ai 前 必须 先选修 bi
阅读全文
摘要:http://www.cse.chalmers.se/edu/year/2018/course/DAT037/slides/3.pdf Bucket Sort Algorithm - LearnersBucket https://learnersbucket.com/tutorials/algori
阅读全文
摘要:https://www.runoob.com/w3cnote/ten-sorting-algorithm.html 1.0 十大经典排序算法 分类 算法 本系列算法整理自:https://github.com/hustcc/JS-Sorting-Algorithm 同时也参考了维基百科做了一些补充。
阅读全文
摘要:http://www.personal.kent.edu/~rmuhamma/Algorithms/MyAlgorithms/Greedy/greedyIntro.htm Greedy Introduction Greedy algorithms are simple and straightfor
阅读全文
摘要:n(n+1)/2 连续自然数 1,2,3.....,n 队列 从中任意取出1至n个相加,可以表示的连续自然数队列中最大的自然数是多少 受“高斯求和--蛇头蛇尾脑图--长方形对角线脑图--苯环发现之旅故事”和“当前最优--贪心算法--greedy algorithms”启发,可得“脑图……眼图”。 拓
阅读全文