1 Star 13 Fork 0

jianchiyiye/cylisp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
tree.scm 513 Bytes
一键复制 编辑 原始数据 按行查看 历史
jianchiyiye 提交于 2021-11-24 08:44 . ver0.6 is OK.
(define (make-func-tree fn df mf)
(let ((res-l '())
(found-flag #f)
(l cyl-func-tree-list)
)
(if (null? l)
(if (and (string? df)(string? mf)(string=? df mf))
(push (list mf fn) l)
(list 'err 0 'make-func-tree (format "当函数树为空时,直接归属函数和归属主函数必须一致。[~a][~a]" df mf)))
(begin
(tr-list (i e l 0)
(if (and (string? mf)(string=? mf (car e)))
(set! found-flag (add-atom-to-list fn df e)))
(push (list mf fn) l))
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Scheme
1
https://gitee.com/jianchiyiye/cylisp.git
git@gitee.com:jianchiyiye/cylisp.git
jianchiyiye
cylisp
cylisp
master

搜索帮助