clj-trie:一个简单的Clojure Trie实现

时间:2024-06-07 03:29:32
【文件属性】:

文件名称:clj-trie:一个简单的Clojure Trie实现

文件大小:4KB

文件格式:ZIP

更新时间:2024-06-07 03:29:32

Clojure

音乐 Clojure库旨在用于前缀匹配的字符串,但也可以与其他序列一起使用。 用法 ( require '[clj-trie.core :as tr]) ( def my-trie ( atom ( tr/trie [ " apple " " apples " " banana " ]))) ( tr/prefix-matches @my-trie " ap " ) ; => ("apple" "apples") ( tr/prefix-matches @my-trie " ba " ) ; => ("banana") ( swap! my-trie tr/insert-value " bananas " ) ( tr/prefix-matches @my-trie " ba " ) ; => ("banana" "bananas") 执照 版权所有:copyright:2015 github.com/che


【文件预览】:
clj-trie-master
----.gitignore(99B)
----README.md(648B)
----project.clj(427B)
----test()
--------clj_trie()
----LICENSE(559B)
----src()
--------clj_trie()
----.travis.yml(50B)

网友评论