Uniform random number generators
by Agner Fog, 2001 - 2007
randomc.zip contains a C++ class library of uniform random number generators of good quality.
The random number generators found in standard libraries are often of a poor quality, insufficient for large Monte Carlo calculations. This C++ ...
Fast and transparent file system and swap encryption package for linux. No source code changes to linux kernel. Works with 2.6, 2.4, 2.2 and 2.0 kernels.
Proceedings of Practice of Interesting Algorithms 2007
The editor assumes no responsibility for the accuracy, completeness or usefulness of
the information disclosed in this volume. Unauthorized use might infringe on
privately owned patents of publication right. Please contact the individual authors ...
ClustanGraphics聚类分析工具。提供了11种聚类算法。
Single Linkage (or Minimum Method, Nearest Neighbor)
Complete Linkage (or Maximum Method, Furthest Neighbor)
Average Linkage (UPGMA)
Weighted Average Linkage (WPGMA)
Mean Proximity
Centroid (UPGMC)
Median (WPGMC)
Increase in Sum of Squares (Ward s Me ...
Instead of finding the longest common
subsequence, let us try to determine the
length of the LCS.
􀂄 Then tracking back to find the LCS.
􀂄 Consider a1a2…am and b1b2…bn.
􀂄 Case 1: am=bn. The LCS must contain am,
we have to find the LCS of a1a2…am-1 and
b1b2…bn-1.
􀂄 ...