summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Okay <okay@toyful.space>2021-05-27 13:45:12 -0500
committerColin Okay <okay@toyful.space>2021-05-27 13:45:12 -0500
commit76835f141fa64dbe2d60f6859567fb32908ef681 (patch)
tree809bc54209fc4549ed4f1e13a548682833db5dce
parent09538f2f3e301ce3315af33f9df206c41183b4a0 (diff)
readme
-rw-r--r--README.md29
1 files changed, 29 insertions, 0 deletions
diff --git a/README.md b/README.md
new file mode 100644
index 0000000..824a977
--- /dev/null
+++ b/README.md
@@ -0,0 +1,29 @@
+# zhsh
+
+An implementation of the [Zhang-Shasha]() algorithm for calculating
+tree edit distance.
+
+Here trees are s-expressions with NON-NULL leaves.
+
+I.e. Leaves are `(and leaf (atom leaf))`
+
+## Examples:
+
+ ZHSH> (treedist '((the cat) (sat (on (the mat))))
+ '((the cat) (sat (on (the mat )))))
+ 0
+
+ ZHSH> (treedist '((the cat) (sat (on (the mat))))
+ '((the cat) (sat (on (a mat )))))
+ 11
+
+ ZHSH> (treedist '((the cat) (sat (on (the mat))))
+ '((the ordinary cats) (sit (on (a simple chair )))))
+ 21
+
+ ZHSH> (treedist '((the cat) (sat (on (the mat)) (for (an hour))))
+ '((the ordinary cats) (sit (on (a simple chair)))))
+ 26
+
+
+