欧几里德算法
欧几里德算法又称辗转相除法,是指用于计算两个正整数a,b的最大公约数。
应用领域有数学和计算机两个方面。
计算公式
gcd(a,b) = gcd(b,a mod b)
时间复杂度
a mod b必然是小于a/2的,而上一次的b会变成下一次的a,上一次的a mod b会变成下一次的b,最坏情况也就是b在a/2附近,即a mod b在a/2附近。
在最坏情况时每次的...
MathJax
MathJax is a JavaScript display engine for mathematics that works in all browsers. No more setup for readers. It just works.
doc
zh_CN doc
Hello World
helloWorld.html
<...
Apache Solr
Solr is the popular, blazing-fast, open source enterprise search platform built on Apache Lucene™.
Lucene vs Solr
Lucene vs Solr.
简而言之,Lucene 是引擎,Solr 是小汽车。
快速使用,可以使用 Solr, 自由装...