make it run,make it better,make it fast. https://github.com/liulanghaitun
发布时间:2020-09-15 08:42:53
(define lot (lambda(ls) (not (null? ls))))(define member& (lambda (elem ls cont) (cond ((null? ls) (cont '())) ((eq? elem (car ls)) (member& elem (cdr ls) (lambda (res) (cont (cons elem res))))) .........【阅读全文】
发布时间:2017-10-22 00:42:51
1)编译平台:gentoo $uname -a Linux gentoo 4.12.12-gentoo #2 SMP Thu Sep 14 21:32:14 CST 2017 x86_64 Intel(R) Core(TM) i7-3720QM CPU @ 2.60GHz GenuineIntel GNU/Linux2)编译软件:chez scheme$scheme -v 或者使用(petite -v)Chez Scheme Version 9.4Copyright 1984-2016 Cisco Systems, Inc.3)编.........【阅读全文】
发布时间:2016-12-27 20:59:37
第二章1.判断列表中是否每个S表达式都是原子(define debug (.........【阅读全文】
发布时间:2016-12-26 21:38:13
第一章 1)基本概念1.1)S表达式: scheme中所有元素都可以叫做S表达式1.2)atom: 原子,.........【阅读全文】