├── .gitignore ├── README.md ├── _config.yml ├── code ├── 00-other │ ├── 02-hillClimbing │ │ ├── 21-slotFilling │ │ │ └── understandEnglish.js │ │ ├── README.md │ │ ├── hillClimbingFramework │ │ │ ├── README.md │ │ │ ├── hillClimbing.js │ │ │ ├── hillClimbingArray.js │ │ │ ├── hillClimbingEquation.js │ │ │ └── hillClimbingNumber.js │ │ ├── hillClimbingSimple.js │ │ ├── simulatedAnnealing │ │ │ ├── README.md │ │ │ ├── simulatedAnnealing.js │ │ │ ├── simulatedAnnealingArray.js │ │ │ └── simulatedAnnealingNumber.js │ │ └── solution │ │ │ ├── matrix.js │ │ │ ├── solution.js │ │ │ ├── solutionArray.js │ │ │ ├── solutionEquations.js │ │ │ └── solutionNumber.js │ ├── 03-gradientDescendent │ │ └── nn0 │ │ │ ├── README.md │ │ │ ├── example │ │ │ └── 01-gradient │ │ │ │ ├── f.js │ │ │ │ ├── gradientDescendent.js │ │ │ │ └── gradientEx.js │ │ │ ├── lib │ │ │ └── pvector.js │ │ │ └── nn.js │ ├── 04-backPropagation │ │ ├── nn1 │ │ │ ├── README.md │ │ │ ├── example │ │ │ │ ├── 01-gradient │ │ │ │ │ ├── f.js │ │ │ │ │ ├── gradientEx.js │ │ │ │ │ └── optimizeEx.js │ │ │ │ └── 02-backprop │ │ │ │ │ ├── f.js │ │ │ │ │ ├── gradientEx.js │ │ │ │ │ ├── optimize.out │ │ │ │ │ └── optimizeEx.js │ │ │ ├── lib │ │ │ │ ├── fnet.js │ │ │ │ ├── function.js.bak │ │ │ │ ├── gate.js │ │ │ │ ├── grad.js │ │ │ │ ├── net.js │ │ │ │ ├── node.js │ │ │ │ ├── pvector.js │ │ │ │ └── pvector.js.bak │ │ │ └── nn.js │ │ └── svm │ │ │ └── svm.js │ ├── 05-geneticAlgorithm │ │ ├── GA.js │ │ └── README.md │ ├── 16-search │ │ ├── README.md │ │ ├── pathFinder.js │ │ ├── puzzleSearch.js │ │ ├── puzzleSearch.txt │ │ └── shipSearch.js │ ├── 17-gameSearch │ │ ├── README.md │ │ ├── gomoku.js │ │ ├── minMax.js │ │ └── monteCarloSearch.md │ ├── 19-recursiveDescendent │ │ ├── compileExp.js │ │ ├── genChinese.js │ │ ├── genEnglish.js │ │ ├── genMath.js │ │ ├── genexp1.js │ │ └── genexp2.js │ ├── datastructure │ │ ├── hashtable.js │ │ ├── queue.js │ │ └── stack.js │ └── qlearning │ │ ├── README.md │ │ ├── q-learning.js │ │ ├── .gitignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── example1.html │ │ ├── example1.js │ │ ├── example2.html │ │ ├── example2.js │ │ ├── example3.html │ │ ├── example3.js │ │ └── q-learning.js │ │ ├── qlearning.js │ │ ├── qwalk1d.js │ │ ├── qwalk2d.js │ │ └── rand.js ├── 01-tableLookup │ ├── README.md │ ├── combinatorial │ │ ├── Cnk.js │ │ ├── CnkR.js │ │ └── CnkRLookup.js │ ├── e2c.js │ └── fiboanacci │ │ ├── fiboanacci.js │ │ └── fiboanacci_lookup.js ├── 02-random │ ├── README.md │ ├── distribution │ │ ├── README.ext.md │ │ ├── README.md │ │ └── rexp.js │ ├── random.js │ ├── random2.js │ ├── random3.js │ ├── random3Test.js │ ├── randomTest.js │ ├── test.js │ └── uuid.js ├── 03-monteCarlo │ ├── BayesLogic │ │ ├── BayesLogic.js │ │ ├── BayesLogicNaive.js │ │ └── README.md │ ├── BayesNet │ │ ├── BayesEnumAsk.js │ │ ├── BayesNet.js │ │ ├── BayesNet.txt │ │ ├── BayesNet1.js │ │ ├── BayesRejectSampling.js │ │ ├── BayesSample.js │ │ ├── myLib.js │ │ └── prob.js │ ├── README.md │ ├── markov │ │ ├── README.md │ │ ├── gibbs.js │ │ ├── markov.js │ │ ├── markov.md │ │ ├── mcmc.js │ │ ├── mcmcGibbs.js │ │ ├── metropolis.js │ │ └── prob.js │ ├── mcmc │ │ └── README.md │ └── pi │ │ ├── README.md │ │ └── monteCarloPi.js ├── 04-iterative │ ├── README.md │ ├── em │ │ ├── em.js │ │ └── em.md │ ├── equation │ │ ├── README.md │ │ ├── bak │ │ │ ├── binarySearch.js │ │ │ ├── bruteForce.js │ │ │ ├── f1.js │ │ │ ├── f2.js │ │ │ ├── hillClimbing.js │ │ │ └── iteration.js.bak │ │ ├── iterative.js │ │ └── iterative3.js │ └── kmean │ │ ├── kmean.js │ │ └── kmeanEx.js ├── 05-dynamicProgramming │ ├── DynamicProgramming.md │ ├── README.md │ ├── combinatorial │ │ └── CnkDynamic.js │ ├── editDistance.js │ ├── hmm.md │ └── viterbi.js ├── 06-divideConquer │ ├── FFT │ │ └── FFT.js │ ├── binSearch.js │ └── mergeSort │ │ ├── mergesort.js │ │ └── sortTest.js ├── 07-hashing │ ├── digest.js │ ├── hash.js │ └── sha256.js ├── 08-bruteForce │ ├── SAT │ │ ├── bak │ │ │ ├── eval.js │ │ │ └── sat.js │ │ └── sat.js │ ├── digitalcach │ │ └── mining.js │ └── password │ │ └── passwordFind.js ├── 09-numerical │ └── calculus │ │ ├── README.md │ │ ├── diff.js │ │ ├── integral.js │ │ └── partial.js ├── 10-greedy │ ├── NaiveBayes │ │ ├── README.md │ │ ├── naiveBayesClassifier.js │ │ ├── naiveBayesProb.js │ │ └── naiveProb.js │ ├── README.md │ ├── decisionTree.js │ ├── huffmanCode │ │ ├── README.md │ │ ├── huffmanCode 拷貝 2.js │ │ ├── huffmanCode 拷貝.js │ │ └── huffmanCode.js │ ├── knn.js │ ├── knnEx.js │ └── minimalSpanningTree │ │ └── minimalSpanningTree.js ├── 11-graph │ └── graphSearch.js ├── 12-transformDomain │ └── Fourier │ │ ├── DFT.js │ │ ├── README.md │ │ └── complex.js ├── 13-stringMatching │ ├── README.md │ ├── eliza.html │ ├── gzip.js │ ├── gzip.js.gz │ ├── knuth-morris-pratt │ │ ├── README.md │ │ ├── kmp.js │ │ └── kmpTest.js │ └── minimalEditDistance │ │ ├── README.md │ │ └── levenshteinDistance.js ├── 14-cryptography │ ├── AES │ │ ├── aes.js │ │ ├── aes.md │ │ └── cipher.js │ ├── Blum │ │ ├── README.md │ │ ├── blumBlumShub.js │ │ └── blumBlumShubTest.js │ ├── GaloisField │ │ ├── GaloisField.js │ │ ├── README.ext.md │ │ └── README.md │ ├── README.md │ ├── RSA │ │ ├── README.md │ │ ├── rsa.md │ │ └── simpleRsa.js │ ├── diffieHellman │ │ ├── README.ext.md │ │ ├── README.md │ │ └── diffieHellman.js │ ├── digest.js │ ├── encrypt.md │ ├── gcd │ │ ├── README.md │ │ └── gcd.js │ ├── guid.js │ ├── hack.md │ ├── hashcash.md │ ├── home.md │ ├── methodList.js │ ├── mining.js │ └── sign │ │ ├── cert.pem │ │ ├── server.pem │ │ └── sign.js ├── 15-reduction │ └── halt │ │ ├── halt.js │ │ └── isHalt.js ├── README.md └── package-lock.json ├── docs ├── book │ ├── SUMMARY.html │ └── deepAlgorithm.html ├── html │ ├── 03-gradientDescendent.html │ ├── 04-backPropagation.html │ ├── deepAlgorithm.html │ └── deepAlgorithm2.html ├── img │ ├── AlphaBetaExample.jpg │ ├── ChineseChess.jpg │ ├── EuropeanChess.jpg │ ├── GoogleGraph2D.jpg │ ├── GoogleGraph2D2vally.jpg │ ├── GoogleGraph2DMountain.jpg │ ├── GoogleGraph3D.jpg │ ├── Gradient.jpg │ ├── Minimax.jpg │ ├── README.md │ ├── RlabIDE.png │ ├── RlabIDE_disk.png │ ├── bfs.jpg │ ├── binarySearch.png │ ├── dfs.jpg │ ├── eliza_talkto2.png │ ├── equationSet.png │ ├── gateNet.png │ ├── graphSearch.jpg │ ├── greedyCoin.png │ ├── greedyGraphSearch.png │ ├── greedyHillClimbing.png │ ├── iteration.png │ ├── linearInterpolation.png │ ├── markov2state.jpg │ ├── markov2state_balance.jpg │ ├── markov2state_gibbs (1).jpg │ ├── markov2state_gibbs.jpg │ └── markov2state_metropolis.jpg └── md.bak │ ├── 01-tableLookup.md │ ├── 02-hillClimbing.md │ ├── 03-gradientDescendent.md │ ├── 04-backPropagation.md │ ├── 05-geneticAlgorithm.md │ ├── 06-random.md │ ├── 07-monteCarlo.md │ ├── 08-transformDomain.md │ ├── 09-dynamicProgramming.md │ ├── 10-divideConquer.md │ ├── 11-hashing.md │ ├── 12-bruteForce.md │ ├── 13-numerical.md │ ├── 14-greedy.md │ ├── 15-graph.md │ ├── 16-search.md │ ├── 17-gameSearch.md │ ├── 18-iterative.md │ ├── 19-recursiveDescendent.md │ ├── 20-stringMatching.md │ ├── 21-slotFilling.md │ ├── 22-cryptography.md │ ├── 23-reduction.md │ ├── README.md │ ├── SUMMARY.md │ ├── _Footer.md │ ├── _Sidebar.md │ ├── backprop.md │ ├── book.md │ ├── deepAlgorithm.md │ ├── deepAlgorithm_.md │ └── gradient.md └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | 請點 [此處](https://github.com/cccbook/algjs/wiki) 開始閱讀! 2 | -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/_config.yml -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/21-slotFilling/understandEnglish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/21-slotFilling/understandEnglish.js -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/README.md -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/hillClimbingFramework/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/hillClimbingFramework/README.md -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/hillClimbingFramework/hillClimbing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/hillClimbingFramework/hillClimbing.js -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/hillClimbingFramework/hillClimbingArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/hillClimbingFramework/hillClimbingArray.js -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/hillClimbingFramework/hillClimbingEquation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/hillClimbingFramework/hillClimbingEquation.js -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/hillClimbingFramework/hillClimbingNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/hillClimbingFramework/hillClimbingNumber.js -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/hillClimbingSimple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/hillClimbingSimple.js -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/simulatedAnnealing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/simulatedAnnealing/README.md -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/simulatedAnnealing/simulatedAnnealing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/simulatedAnnealing/simulatedAnnealing.js -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/simulatedAnnealing/simulatedAnnealingArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/simulatedAnnealing/simulatedAnnealingArray.js -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/simulatedAnnealing/simulatedAnnealingNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/simulatedAnnealing/simulatedAnnealingNumber.js -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/solution/matrix.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/solution/matrix.js -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/solution/solution.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/solution/solution.js -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/solution/solutionArray.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/solution/solutionArray.js -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/solution/solutionEquations.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/solution/solutionEquations.js -------------------------------------------------------------------------------- /code/00-other/02-hillClimbing/solution/solutionNumber.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/02-hillClimbing/solution/solutionNumber.js -------------------------------------------------------------------------------- /code/00-other/03-gradientDescendent/nn0/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/03-gradientDescendent/nn0/README.md -------------------------------------------------------------------------------- /code/00-other/03-gradientDescendent/nn0/example/01-gradient/f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/03-gradientDescendent/nn0/example/01-gradient/f.js -------------------------------------------------------------------------------- /code/00-other/03-gradientDescendent/nn0/example/01-gradient/gradientDescendent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/03-gradientDescendent/nn0/example/01-gradient/gradientDescendent.js -------------------------------------------------------------------------------- /code/00-other/03-gradientDescendent/nn0/example/01-gradient/gradientEx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/03-gradientDescendent/nn0/example/01-gradient/gradientEx.js -------------------------------------------------------------------------------- /code/00-other/03-gradientDescendent/nn0/lib/pvector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/03-gradientDescendent/nn0/lib/pvector.js -------------------------------------------------------------------------------- /code/00-other/03-gradientDescendent/nn0/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/03-gradientDescendent/nn0/nn.js -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/README.md -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/example/01-gradient/f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/example/01-gradient/f.js -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/example/01-gradient/gradientEx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/example/01-gradient/gradientEx.js -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/example/01-gradient/optimizeEx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/example/01-gradient/optimizeEx.js -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/example/02-backprop/f.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/example/02-backprop/f.js -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/example/02-backprop/gradientEx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/example/02-backprop/gradientEx.js -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/example/02-backprop/optimize.out: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/example/02-backprop/optimize.out -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/example/02-backprop/optimizeEx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/example/02-backprop/optimizeEx.js -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/lib/fnet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/lib/fnet.js -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/lib/function.js.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/lib/function.js.bak -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/lib/gate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/lib/gate.js -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/lib/grad.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/lib/grad.js -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/lib/net.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/lib/net.js -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/lib/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/lib/node.js -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/lib/pvector.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/lib/pvector.js -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/lib/pvector.js.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/lib/pvector.js.bak -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/nn1/nn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/nn1/nn.js -------------------------------------------------------------------------------- /code/00-other/04-backPropagation/svm/svm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/04-backPropagation/svm/svm.js -------------------------------------------------------------------------------- /code/00-other/05-geneticAlgorithm/GA.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/05-geneticAlgorithm/GA.js -------------------------------------------------------------------------------- /code/00-other/05-geneticAlgorithm/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/05-geneticAlgorithm/README.md -------------------------------------------------------------------------------- /code/00-other/16-search/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/16-search/README.md -------------------------------------------------------------------------------- /code/00-other/16-search/pathFinder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/16-search/pathFinder.js -------------------------------------------------------------------------------- /code/00-other/16-search/puzzleSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/16-search/puzzleSearch.js -------------------------------------------------------------------------------- /code/00-other/16-search/puzzleSearch.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/16-search/puzzleSearch.txt -------------------------------------------------------------------------------- /code/00-other/16-search/shipSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/16-search/shipSearch.js -------------------------------------------------------------------------------- /code/00-other/17-gameSearch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/17-gameSearch/README.md -------------------------------------------------------------------------------- /code/00-other/17-gameSearch/gomoku.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/17-gameSearch/gomoku.js -------------------------------------------------------------------------------- /code/00-other/17-gameSearch/minMax.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/17-gameSearch/minMax.js -------------------------------------------------------------------------------- /code/00-other/17-gameSearch/monteCarloSearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/17-gameSearch/monteCarloSearch.md -------------------------------------------------------------------------------- /code/00-other/19-recursiveDescendent/compileExp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/19-recursiveDescendent/compileExp.js -------------------------------------------------------------------------------- /code/00-other/19-recursiveDescendent/genChinese.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/19-recursiveDescendent/genChinese.js -------------------------------------------------------------------------------- /code/00-other/19-recursiveDescendent/genEnglish.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/19-recursiveDescendent/genEnglish.js -------------------------------------------------------------------------------- /code/00-other/19-recursiveDescendent/genMath.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/19-recursiveDescendent/genMath.js -------------------------------------------------------------------------------- /code/00-other/19-recursiveDescendent/genexp1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/19-recursiveDescendent/genexp1.js -------------------------------------------------------------------------------- /code/00-other/19-recursiveDescendent/genexp2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/19-recursiveDescendent/genexp2.js -------------------------------------------------------------------------------- /code/00-other/datastructure/hashtable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/datastructure/hashtable.js -------------------------------------------------------------------------------- /code/00-other/datastructure/queue.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/00-other/datastructure/stack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/datastructure/stack.js -------------------------------------------------------------------------------- /code/00-other/qlearning/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/qlearning/README.md -------------------------------------------------------------------------------- /code/00-other/qlearning/q-learning.js/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.idea/* 3 | -------------------------------------------------------------------------------- /code/00-other/qlearning/q-learning.js/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/qlearning/q-learning.js/LICENSE -------------------------------------------------------------------------------- /code/00-other/qlearning/q-learning.js/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/qlearning/q-learning.js/README.md -------------------------------------------------------------------------------- /code/00-other/qlearning/q-learning.js/example1.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/qlearning/q-learning.js/example1.html -------------------------------------------------------------------------------- /code/00-other/qlearning/q-learning.js/example1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/qlearning/q-learning.js/example1.js -------------------------------------------------------------------------------- /code/00-other/qlearning/q-learning.js/example2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/qlearning/q-learning.js/example2.html -------------------------------------------------------------------------------- /code/00-other/qlearning/q-learning.js/example2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/qlearning/q-learning.js/example2.js -------------------------------------------------------------------------------- /code/00-other/qlearning/q-learning.js/example3.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/qlearning/q-learning.js/example3.html -------------------------------------------------------------------------------- /code/00-other/qlearning/q-learning.js/example3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/qlearning/q-learning.js/example3.js -------------------------------------------------------------------------------- /code/00-other/qlearning/q-learning.js/q-learning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/qlearning/q-learning.js/q-learning.js -------------------------------------------------------------------------------- /code/00-other/qlearning/qlearning.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/qlearning/qlearning.js -------------------------------------------------------------------------------- /code/00-other/qlearning/qwalk1d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/qlearning/qwalk1d.js -------------------------------------------------------------------------------- /code/00-other/qlearning/qwalk2d.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/qlearning/qwalk2d.js -------------------------------------------------------------------------------- /code/00-other/qlearning/rand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/00-other/qlearning/rand.js -------------------------------------------------------------------------------- /code/01-tableLookup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/01-tableLookup/README.md -------------------------------------------------------------------------------- /code/01-tableLookup/combinatorial/Cnk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/01-tableLookup/combinatorial/Cnk.js -------------------------------------------------------------------------------- /code/01-tableLookup/combinatorial/CnkR.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/01-tableLookup/combinatorial/CnkR.js -------------------------------------------------------------------------------- /code/01-tableLookup/combinatorial/CnkRLookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/01-tableLookup/combinatorial/CnkRLookup.js -------------------------------------------------------------------------------- /code/01-tableLookup/e2c.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/01-tableLookup/e2c.js -------------------------------------------------------------------------------- /code/01-tableLookup/fiboanacci/fiboanacci.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/01-tableLookup/fiboanacci/fiboanacci.js -------------------------------------------------------------------------------- /code/01-tableLookup/fiboanacci/fiboanacci_lookup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/01-tableLookup/fiboanacci/fiboanacci_lookup.js -------------------------------------------------------------------------------- /code/02-random/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/02-random/README.md -------------------------------------------------------------------------------- /code/02-random/distribution/README.ext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/02-random/distribution/README.ext.md -------------------------------------------------------------------------------- /code/02-random/distribution/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/02-random/distribution/README.md -------------------------------------------------------------------------------- /code/02-random/distribution/rexp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/02-random/distribution/rexp.js -------------------------------------------------------------------------------- /code/02-random/random.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/02-random/random.js -------------------------------------------------------------------------------- /code/02-random/random2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/02-random/random2.js -------------------------------------------------------------------------------- /code/02-random/random3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/02-random/random3.js -------------------------------------------------------------------------------- /code/02-random/random3Test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/02-random/random3Test.js -------------------------------------------------------------------------------- /code/02-random/randomTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/02-random/randomTest.js -------------------------------------------------------------------------------- /code/02-random/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/02-random/test.js -------------------------------------------------------------------------------- /code/02-random/uuid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/02-random/uuid.js -------------------------------------------------------------------------------- /code/03-monteCarlo/BayesLogic/BayesLogic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/BayesLogic/BayesLogic.js -------------------------------------------------------------------------------- /code/03-monteCarlo/BayesLogic/BayesLogicNaive.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/BayesLogic/BayesLogicNaive.js -------------------------------------------------------------------------------- /code/03-monteCarlo/BayesLogic/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/BayesLogic/README.md -------------------------------------------------------------------------------- /code/03-monteCarlo/BayesNet/BayesEnumAsk.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/BayesNet/BayesEnumAsk.js -------------------------------------------------------------------------------- /code/03-monteCarlo/BayesNet/BayesNet.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/BayesNet/BayesNet.js -------------------------------------------------------------------------------- /code/03-monteCarlo/BayesNet/BayesNet.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/BayesNet/BayesNet.txt -------------------------------------------------------------------------------- /code/03-monteCarlo/BayesNet/BayesNet1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/BayesNet/BayesNet1.js -------------------------------------------------------------------------------- /code/03-monteCarlo/BayesNet/BayesRejectSampling.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/BayesNet/BayesRejectSampling.js -------------------------------------------------------------------------------- /code/03-monteCarlo/BayesNet/BayesSample.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/BayesNet/BayesSample.js -------------------------------------------------------------------------------- /code/03-monteCarlo/BayesNet/myLib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/BayesNet/myLib.js -------------------------------------------------------------------------------- /code/03-monteCarlo/BayesNet/prob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/BayesNet/prob.js -------------------------------------------------------------------------------- /code/03-monteCarlo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/README.md -------------------------------------------------------------------------------- /code/03-monteCarlo/markov/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/markov/README.md -------------------------------------------------------------------------------- /code/03-monteCarlo/markov/gibbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/markov/gibbs.js -------------------------------------------------------------------------------- /code/03-monteCarlo/markov/markov.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/markov/markov.js -------------------------------------------------------------------------------- /code/03-monteCarlo/markov/markov.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/markov/markov.md -------------------------------------------------------------------------------- /code/03-monteCarlo/markov/mcmc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/markov/mcmc.js -------------------------------------------------------------------------------- /code/03-monteCarlo/markov/mcmcGibbs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/markov/mcmcGibbs.js -------------------------------------------------------------------------------- /code/03-monteCarlo/markov/metropolis.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/markov/metropolis.js -------------------------------------------------------------------------------- /code/03-monteCarlo/markov/prob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/markov/prob.js -------------------------------------------------------------------------------- /code/03-monteCarlo/mcmc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/mcmc/README.md -------------------------------------------------------------------------------- /code/03-monteCarlo/pi/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/pi/README.md -------------------------------------------------------------------------------- /code/03-monteCarlo/pi/monteCarloPi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/03-monteCarlo/pi/monteCarloPi.js -------------------------------------------------------------------------------- /code/04-iterative/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/04-iterative/README.md -------------------------------------------------------------------------------- /code/04-iterative/em/em.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/04-iterative/em/em.js -------------------------------------------------------------------------------- /code/04-iterative/em/em.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/04-iterative/em/em.md -------------------------------------------------------------------------------- /code/04-iterative/equation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/04-iterative/equation/README.md -------------------------------------------------------------------------------- /code/04-iterative/equation/bak/binarySearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/04-iterative/equation/bak/binarySearch.js -------------------------------------------------------------------------------- /code/04-iterative/equation/bak/bruteForce.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/04-iterative/equation/bak/bruteForce.js -------------------------------------------------------------------------------- /code/04-iterative/equation/bak/f1.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/04-iterative/equation/bak/f1.js -------------------------------------------------------------------------------- /code/04-iterative/equation/bak/f2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/04-iterative/equation/bak/f2.js -------------------------------------------------------------------------------- /code/04-iterative/equation/bak/hillClimbing.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/04-iterative/equation/bak/hillClimbing.js -------------------------------------------------------------------------------- /code/04-iterative/equation/bak/iteration.js.bak: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/04-iterative/equation/bak/iteration.js.bak -------------------------------------------------------------------------------- /code/04-iterative/equation/iterative.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/04-iterative/equation/iterative.js -------------------------------------------------------------------------------- /code/04-iterative/equation/iterative3.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/04-iterative/equation/iterative3.js -------------------------------------------------------------------------------- /code/04-iterative/kmean/kmean.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/04-iterative/kmean/kmean.js -------------------------------------------------------------------------------- /code/04-iterative/kmean/kmeanEx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/04-iterative/kmean/kmeanEx.js -------------------------------------------------------------------------------- /code/05-dynamicProgramming/DynamicProgramming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/05-dynamicProgramming/DynamicProgramming.md -------------------------------------------------------------------------------- /code/05-dynamicProgramming/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/05-dynamicProgramming/README.md -------------------------------------------------------------------------------- /code/05-dynamicProgramming/combinatorial/CnkDynamic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/05-dynamicProgramming/combinatorial/CnkDynamic.js -------------------------------------------------------------------------------- /code/05-dynamicProgramming/editDistance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/05-dynamicProgramming/editDistance.js -------------------------------------------------------------------------------- /code/05-dynamicProgramming/hmm.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/05-dynamicProgramming/viterbi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/05-dynamicProgramming/viterbi.js -------------------------------------------------------------------------------- /code/06-divideConquer/FFT/FFT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/06-divideConquer/FFT/FFT.js -------------------------------------------------------------------------------- /code/06-divideConquer/binSearch.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/06-divideConquer/mergeSort/mergesort.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/06-divideConquer/mergeSort/mergesort.js -------------------------------------------------------------------------------- /code/06-divideConquer/mergeSort/sortTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/06-divideConquer/mergeSort/sortTest.js -------------------------------------------------------------------------------- /code/07-hashing/digest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/07-hashing/digest.js -------------------------------------------------------------------------------- /code/07-hashing/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/07-hashing/hash.js -------------------------------------------------------------------------------- /code/07-hashing/sha256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/07-hashing/sha256.js -------------------------------------------------------------------------------- /code/08-bruteForce/SAT/bak/eval.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/08-bruteForce/SAT/bak/eval.js -------------------------------------------------------------------------------- /code/08-bruteForce/SAT/bak/sat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/08-bruteForce/SAT/bak/sat.js -------------------------------------------------------------------------------- /code/08-bruteForce/SAT/sat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/08-bruteForce/SAT/sat.js -------------------------------------------------------------------------------- /code/08-bruteForce/digitalcach/mining.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/08-bruteForce/digitalcach/mining.js -------------------------------------------------------------------------------- /code/08-bruteForce/password/passwordFind.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/08-bruteForce/password/passwordFind.js -------------------------------------------------------------------------------- /code/09-numerical/calculus/README.md: -------------------------------------------------------------------------------- 1 | # 微積分 2 | 3 | * []() 4 | 5 | -------------------------------------------------------------------------------- /code/09-numerical/calculus/diff.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/09-numerical/calculus/diff.js -------------------------------------------------------------------------------- /code/09-numerical/calculus/integral.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/09-numerical/calculus/integral.js -------------------------------------------------------------------------------- /code/09-numerical/calculus/partial.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/09-numerical/calculus/partial.js -------------------------------------------------------------------------------- /code/10-greedy/NaiveBayes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/10-greedy/NaiveBayes/README.md -------------------------------------------------------------------------------- /code/10-greedy/NaiveBayes/naiveBayesClassifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/10-greedy/NaiveBayes/naiveBayesClassifier.js -------------------------------------------------------------------------------- /code/10-greedy/NaiveBayes/naiveBayesProb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/10-greedy/NaiveBayes/naiveBayesProb.js -------------------------------------------------------------------------------- /code/10-greedy/NaiveBayes/naiveProb.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/10-greedy/NaiveBayes/naiveProb.js -------------------------------------------------------------------------------- /code/10-greedy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/10-greedy/README.md -------------------------------------------------------------------------------- /code/10-greedy/decisionTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/10-greedy/decisionTree.js -------------------------------------------------------------------------------- /code/10-greedy/huffmanCode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/10-greedy/huffmanCode/README.md -------------------------------------------------------------------------------- /code/10-greedy/huffmanCode/huffmanCode 拷貝 2.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/10-greedy/huffmanCode/huffmanCode 拷貝 2.js -------------------------------------------------------------------------------- /code/10-greedy/huffmanCode/huffmanCode 拷貝.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/10-greedy/huffmanCode/huffmanCode 拷貝.js -------------------------------------------------------------------------------- /code/10-greedy/huffmanCode/huffmanCode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/10-greedy/huffmanCode/huffmanCode.js -------------------------------------------------------------------------------- /code/10-greedy/knn.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/10-greedy/knn.js -------------------------------------------------------------------------------- /code/10-greedy/knnEx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/10-greedy/knnEx.js -------------------------------------------------------------------------------- /code/10-greedy/minimalSpanningTree/minimalSpanningTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/10-greedy/minimalSpanningTree/minimalSpanningTree.js -------------------------------------------------------------------------------- /code/11-graph/graphSearch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/11-graph/graphSearch.js -------------------------------------------------------------------------------- /code/12-transformDomain/Fourier/DFT.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/12-transformDomain/Fourier/DFT.js -------------------------------------------------------------------------------- /code/12-transformDomain/Fourier/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/12-transformDomain/Fourier/README.md -------------------------------------------------------------------------------- /code/12-transformDomain/Fourier/complex.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/12-transformDomain/Fourier/complex.js -------------------------------------------------------------------------------- /code/13-stringMatching/README.md: -------------------------------------------------------------------------------- 1 | # 人工智慧簡介 2 | 3 | -------------------------------------------------------------------------------- /code/13-stringMatching/eliza.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/13-stringMatching/eliza.html -------------------------------------------------------------------------------- /code/13-stringMatching/gzip.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/13-stringMatching/gzip.js -------------------------------------------------------------------------------- /code/13-stringMatching/gzip.js.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/13-stringMatching/gzip.js.gz -------------------------------------------------------------------------------- /code/13-stringMatching/knuth-morris-pratt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/13-stringMatching/knuth-morris-pratt/README.md -------------------------------------------------------------------------------- /code/13-stringMatching/knuth-morris-pratt/kmp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/13-stringMatching/knuth-morris-pratt/kmp.js -------------------------------------------------------------------------------- /code/13-stringMatching/knuth-morris-pratt/kmpTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/13-stringMatching/knuth-morris-pratt/kmpTest.js -------------------------------------------------------------------------------- /code/13-stringMatching/minimalEditDistance/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/13-stringMatching/minimalEditDistance/README.md -------------------------------------------------------------------------------- /code/13-stringMatching/minimalEditDistance/levenshteinDistance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/13-stringMatching/minimalEditDistance/levenshteinDistance.js -------------------------------------------------------------------------------- /code/14-cryptography/AES/aes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/AES/aes.js -------------------------------------------------------------------------------- /code/14-cryptography/AES/aes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/AES/aes.md -------------------------------------------------------------------------------- /code/14-cryptography/AES/cipher.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/AES/cipher.js -------------------------------------------------------------------------------- /code/14-cryptography/Blum/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/Blum/README.md -------------------------------------------------------------------------------- /code/14-cryptography/Blum/blumBlumShub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/Blum/blumBlumShub.js -------------------------------------------------------------------------------- /code/14-cryptography/Blum/blumBlumShubTest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/Blum/blumBlumShubTest.js -------------------------------------------------------------------------------- /code/14-cryptography/GaloisField/GaloisField.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/GaloisField/GaloisField.js -------------------------------------------------------------------------------- /code/14-cryptography/GaloisField/README.ext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/GaloisField/README.ext.md -------------------------------------------------------------------------------- /code/14-cryptography/GaloisField/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/GaloisField/README.md -------------------------------------------------------------------------------- /code/14-cryptography/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/README.md -------------------------------------------------------------------------------- /code/14-cryptography/RSA/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/RSA/README.md -------------------------------------------------------------------------------- /code/14-cryptography/RSA/rsa.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/RSA/rsa.md -------------------------------------------------------------------------------- /code/14-cryptography/RSA/simpleRsa.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/RSA/simpleRsa.js -------------------------------------------------------------------------------- /code/14-cryptography/diffieHellman/README.ext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/diffieHellman/README.ext.md -------------------------------------------------------------------------------- /code/14-cryptography/diffieHellman/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/diffieHellman/README.md -------------------------------------------------------------------------------- /code/14-cryptography/diffieHellman/diffieHellman.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/diffieHellman/diffieHellman.js -------------------------------------------------------------------------------- /code/14-cryptography/digest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/digest.js -------------------------------------------------------------------------------- /code/14-cryptography/encrypt.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/encrypt.md -------------------------------------------------------------------------------- /code/14-cryptography/gcd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/gcd/README.md -------------------------------------------------------------------------------- /code/14-cryptography/gcd/gcd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/gcd/gcd.js -------------------------------------------------------------------------------- /code/14-cryptography/guid.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/guid.js -------------------------------------------------------------------------------- /code/14-cryptography/hack.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/hack.md -------------------------------------------------------------------------------- /code/14-cryptography/hashcash.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/hashcash.md -------------------------------------------------------------------------------- /code/14-cryptography/home.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/home.md -------------------------------------------------------------------------------- /code/14-cryptography/methodList.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/methodList.js -------------------------------------------------------------------------------- /code/14-cryptography/mining.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/mining.js -------------------------------------------------------------------------------- /code/14-cryptography/sign/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/sign/cert.pem -------------------------------------------------------------------------------- /code/14-cryptography/sign/server.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/sign/server.pem -------------------------------------------------------------------------------- /code/14-cryptography/sign/sign.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/14-cryptography/sign/sign.js -------------------------------------------------------------------------------- /code/15-reduction/halt/halt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/15-reduction/halt/halt.js -------------------------------------------------------------------------------- /code/15-reduction/halt/isHalt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/code/15-reduction/halt/isHalt.js -------------------------------------------------------------------------------- /code/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/package-lock.json: -------------------------------------------------------------------------------- 1 | { 2 | "lockfileVersion": 1 3 | } 4 | -------------------------------------------------------------------------------- /docs/book/SUMMARY.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/book/SUMMARY.html -------------------------------------------------------------------------------- /docs/book/deepAlgorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/book/deepAlgorithm.html -------------------------------------------------------------------------------- /docs/html/03-gradientDescendent.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/html/03-gradientDescendent.html -------------------------------------------------------------------------------- /docs/html/04-backPropagation.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/html/04-backPropagation.html -------------------------------------------------------------------------------- /docs/html/deepAlgorithm.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/html/deepAlgorithm.html -------------------------------------------------------------------------------- /docs/html/deepAlgorithm2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/html/deepAlgorithm2.html -------------------------------------------------------------------------------- /docs/img/AlphaBetaExample.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/AlphaBetaExample.jpg -------------------------------------------------------------------------------- /docs/img/ChineseChess.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/ChineseChess.jpg -------------------------------------------------------------------------------- /docs/img/EuropeanChess.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/EuropeanChess.jpg -------------------------------------------------------------------------------- /docs/img/GoogleGraph2D.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/GoogleGraph2D.jpg -------------------------------------------------------------------------------- /docs/img/GoogleGraph2D2vally.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/GoogleGraph2D2vally.jpg -------------------------------------------------------------------------------- /docs/img/GoogleGraph2DMountain.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/GoogleGraph2DMountain.jpg -------------------------------------------------------------------------------- /docs/img/GoogleGraph3D.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/GoogleGraph3D.jpg -------------------------------------------------------------------------------- /docs/img/Gradient.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/Gradient.jpg -------------------------------------------------------------------------------- /docs/img/Minimax.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/Minimax.jpg -------------------------------------------------------------------------------- /docs/img/README.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/img/RlabIDE.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/RlabIDE.png -------------------------------------------------------------------------------- /docs/img/RlabIDE_disk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/RlabIDE_disk.png -------------------------------------------------------------------------------- /docs/img/bfs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/bfs.jpg -------------------------------------------------------------------------------- /docs/img/binarySearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/binarySearch.png -------------------------------------------------------------------------------- /docs/img/dfs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/dfs.jpg -------------------------------------------------------------------------------- /docs/img/eliza_talkto2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/eliza_talkto2.png -------------------------------------------------------------------------------- /docs/img/equationSet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/equationSet.png -------------------------------------------------------------------------------- /docs/img/gateNet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/gateNet.png -------------------------------------------------------------------------------- /docs/img/graphSearch.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/graphSearch.jpg -------------------------------------------------------------------------------- /docs/img/greedyCoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/greedyCoin.png -------------------------------------------------------------------------------- /docs/img/greedyGraphSearch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/greedyGraphSearch.png -------------------------------------------------------------------------------- /docs/img/greedyHillClimbing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/greedyHillClimbing.png -------------------------------------------------------------------------------- /docs/img/iteration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/iteration.png -------------------------------------------------------------------------------- /docs/img/linearInterpolation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/linearInterpolation.png -------------------------------------------------------------------------------- /docs/img/markov2state.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/markov2state.jpg -------------------------------------------------------------------------------- /docs/img/markov2state_balance.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/markov2state_balance.jpg -------------------------------------------------------------------------------- /docs/img/markov2state_gibbs (1).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/markov2state_gibbs (1).jpg -------------------------------------------------------------------------------- /docs/img/markov2state_gibbs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/markov2state_gibbs.jpg -------------------------------------------------------------------------------- /docs/img/markov2state_metropolis.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/img/markov2state_metropolis.jpg -------------------------------------------------------------------------------- /docs/md.bak/01-tableLookup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/01-tableLookup.md -------------------------------------------------------------------------------- /docs/md.bak/02-hillClimbing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/02-hillClimbing.md -------------------------------------------------------------------------------- /docs/md.bak/03-gradientDescendent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/03-gradientDescendent.md -------------------------------------------------------------------------------- /docs/md.bak/04-backPropagation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/04-backPropagation.md -------------------------------------------------------------------------------- /docs/md.bak/05-geneticAlgorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/05-geneticAlgorithm.md -------------------------------------------------------------------------------- /docs/md.bak/06-random.md: -------------------------------------------------------------------------------- 1 | # 第 6 章 - 亂數產生法 Random 2 | -------------------------------------------------------------------------------- /docs/md.bak/07-monteCarlo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/07-monteCarlo.md -------------------------------------------------------------------------------- /docs/md.bak/08-transformDomain.md: -------------------------------------------------------------------------------- 1 | # 第 8 章 - 轉換領域法 Transform Domain 2 | -------------------------------------------------------------------------------- /docs/md.bak/09-dynamicProgramming.md: -------------------------------------------------------------------------------- 1 | # 第 9 章 - 動態規劃法 Dynamic Programming 2 | 3 | -------------------------------------------------------------------------------- /docs/md.bak/10-divideConquer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/10-divideConquer.md -------------------------------------------------------------------------------- /docs/md.bak/11-hashing.md: -------------------------------------------------------------------------------- 1 | # 第 11 章 - 雜湊法 Hashing 2 | -------------------------------------------------------------------------------- /docs/md.bak/12-bruteForce.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/12-bruteForce.md -------------------------------------------------------------------------------- /docs/md.bak/13-numerical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/13-numerical.md -------------------------------------------------------------------------------- /docs/md.bak/14-greedy.md: -------------------------------------------------------------------------------- 1 | # 第 14 章 - 貪婪演算法 Greedy Algorithm 2 | -------------------------------------------------------------------------------- /docs/md.bak/15-graph.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/15-graph.md -------------------------------------------------------------------------------- /docs/md.bak/16-search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/16-search.md -------------------------------------------------------------------------------- /docs/md.bak/17-gameSearch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/17-gameSearch.md -------------------------------------------------------------------------------- /docs/md.bak/18-iterative.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/18-iterative.md -------------------------------------------------------------------------------- /docs/md.bak/19-recursiveDescendent.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/19-recursiveDescendent.md -------------------------------------------------------------------------------- /docs/md.bak/20-stringMatching.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/20-stringMatching.md -------------------------------------------------------------------------------- /docs/md.bak/21-slotFilling.md: -------------------------------------------------------------------------------- 1 | # 第 21 章 - 欄位填充法 Slot-Filling 2 | -------------------------------------------------------------------------------- /docs/md.bak/22-cryptography.md: -------------------------------------------------------------------------------- 1 | # 第 22 章 - 密碼學算法 Cryptography 2 | -------------------------------------------------------------------------------- /docs/md.bak/23-reduction.md: -------------------------------------------------------------------------------- 1 | # 第 23 章 - 轉換化約法 Reduction 2 | -------------------------------------------------------------------------------- /docs/md.bak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/README.md -------------------------------------------------------------------------------- /docs/md.bak/SUMMARY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/SUMMARY.md -------------------------------------------------------------------------------- /docs/md.bak/_Footer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/_Footer.md -------------------------------------------------------------------------------- /docs/md.bak/_Sidebar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/_Sidebar.md -------------------------------------------------------------------------------- /docs/md.bak/backprop.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/backprop.md -------------------------------------------------------------------------------- /docs/md.bak/book.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/book.md -------------------------------------------------------------------------------- /docs/md.bak/deepAlgorithm.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/deepAlgorithm.md -------------------------------------------------------------------------------- /docs/md.bak/deepAlgorithm_.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/deepAlgorithm_.md -------------------------------------------------------------------------------- /docs/md.bak/gradient.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/docs/md.bak/gradient.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cccbook/algjs/HEAD/package.json --------------------------------------------------------------------------------