Ocaml循环队列模块

时间:2022-04-14 08:57:44
【文件属性】:

文件名称:Ocaml循环队列模块

文件大小:11KB

文件格式:GZ

更新时间:2022-04-14 08:57:44

Ocaml 循环队列

最近由于项目需要,需要用OCaml语言去实现一个循环队列去实现一些功能。翻遍了Ocaml的官方网站和标准库,发现OCaml只提供普通的队列,于是自己基于Array模块设计了循环队列RoundRobinQueue的模块。能够实现Queue中的基本功能


【文件预览】:
ocaml1
----roundRobinQueue.mli(2KB)
----.paths(19B)
----.projectSettings(462B)
----test.ml(2KB)
----test.byte()
----roundRobinQueue.ml(2KB)
----.settings()
--------org.eclipse.core.resources.prefs(95B)
--------ocaml.prefs(102B)
----.project(347B)
----_build()
--------ocamlc.where(29B)
--------roundRobinQueue.mli(2KB)
--------roundRobinQueue.ml.depends(30B)
--------test.ml(2KB)
--------test.byte(29KB)
--------roundRobinQueue.ml(2KB)
--------test.ml.depends(25B)
--------_digests(1KB)
--------roundRobinQueue.mli.depends(21B)

网友评论