From 0cfcb8f27e80ced20d8f8873cda23346c8a99eed Mon Sep 17 00:00:00 2001 From: ZJ Date: Thu, 22 Aug 2019 13:56:09 -0400 Subject: [PATCH] combine clustering algo into pattern matching --- clustering_algorithms/README.md | 3 --- pattern_matching/README.md | 4 ++++ 2 files changed, 4 insertions(+), 3 deletions(-) delete mode 100644 clustering_algorithms/README.md diff --git a/clustering_algorithms/README.md b/clustering_algorithms/README.md deleted file mode 100644 index b052414..0000000 --- a/clustering_algorithms/README.md +++ /dev/null @@ -1,3 +0,0 @@ -## Clustering Algorithms - -[On the resemblance and containment of documents](https://www.cs.princeton.edu/courses/archive/spr05/cos598E/bib/broder97resemblance.pdf) (Andrei Z. Broder) diff --git a/pattern_matching/README.md b/pattern_matching/README.md index de527fe..f0c9440 100644 --- a/pattern_matching/README.md +++ b/pattern_matching/README.md @@ -4,3 +4,7 @@ * :scroll: [Extensible Pattern Matching in an Extensible Language](extensible-pattern-matching-extensible-language.pdf) by Sam Tobin-Hochstadt. Paper present a sophisticated pattern matcher for [Racket](http://racket-lang.org/), implemented as language extension using macros. * :scroll: [Warnings for pattern matching](warnings-for-pattern-matching.pdf) by Luc Maranget. Paper examine the ML pattern-matching anomalies of useless clauses and non-exhaustive matches. * :scroll: [Efficient String Matching: An Aid to Bibliographic Search](aho-corasick-string-matching.pdf) by Alfred V. Aho and Margaret J. Corasick. A single-pass pattern matching algorithm used in early versions of fgrep and similar projects. [Aho–Corasick entry](http://xlinux.nist.gov/dads//HTML/ahoCorasick.html) in NIST's Dictionary of Algorithms and Data Structures. + +## Clustering Algorithms + +* [On the resemblance and containment of documents](https://www.cs.princeton.edu/courses/archive/spr05/cos598E/bib/broder97resemblance.pdf) (Andrei Z. Broder)