函数式编程λ演算LISP,Erlang尾递归 栈的使用避免防御式编程ER实体Entity关系relationshipOOP [OOA/D]属性、行为继承、聚合、关联抽象、封装笛卡尔方法论拆分排序处理归并软件工程过程方法论软件生命周期RUP统一软件过程管理敏捷开发项目管理(计划、组织、执行、控制)线性...
分类:
编程语言 时间:
2014-07-19 16:20:43
阅读次数:
250
学习任何知识,都不能仅仅把它们当做知识,更重要的是要把它们在实际编程实践中应用起来,持有这样的学习观念才不至于让你变成学究式的活字典,对于程序员来说这一点尤其重要,你学习的任何语言知识,一定要在实际的程序编写过程中不断练习、不停实践,纸上得来终觉浅,绝知此事须躬行。LispBox 实际上是把 Ema...
分类:
其他好文 时间:
2014-07-10 13:32:02
阅读次数:
240
主要是想将以前的lisp程序整合到现在的.net菜单中才会这么干的using Autodesk.AutoCAD.Windows;using Autodesk.AutoCAD.Runtime;using System.Windows.Forms;using Autodesk.AutoCAD.Datab...
分类:
Web程序 时间:
2014-07-09 14:51:38
阅读次数:
208
首先C-x C-f然后输入~,找到.emacs文件,根据slime官方文档说明的添加如下代码到文件末尾,重启一下emacs,slime就编译好了,然后这段代码就可以删除.否则每次启动emacs就算不用来编辑lisp代码,也会加载的.(add-to-list 'load-path "D:\\lispb...
分类:
其他好文 时间:
2014-07-02 23:21:19
阅读次数:
219
【问题】
Define a procedure that takes three numbers as arguments and returns the sum of the squares of the two larger numbers.
定义一个过程,它以三个数为参数,返回其中较大的两个数的平方和。
【普通版】
(define (sum-square-largest x y ...
分类:
其他好文 时间:
2014-06-30 00:19:52
阅读次数:
270
Get start with "Lisp"
在《黑客与漫画》中,Paul graham提到什么才是最好的编程语言,Lisp和C被明显的提及,对可谓是Lisp是推崇备至。最近准备看SICP,于是学一下极具逼格的Lisp。
Getting a Lisp system at Home
On the Command Line
The basi...
分类:
其他好文 时间:
2014-06-27 10:41:20
阅读次数:
171
/*
混合C++、JS、python、Lisp、汇编
1种语言,5种语法
*/
main
{
//C++
vector v;
v.push(2);
putsl(v.size());
if(v.count()==1)
{
putsl("abc");
}
//JS
var a=function(x){
return x*2;
}
putsl(a(3));
a={90...
分类:
编程语言 时间:
2014-06-24 20:39:10
阅读次数:
307
#lang slideshow(define c (circle 10))(define r
(rectangle 10 20));定义一个调用函数(define (square n) (filled-rectangle n
n));局部绑定(define (four p) (define tw.....
分类:
其他好文 时间:
2014-06-07 05:15:21
阅读次数:
315
在CL里我们可以这样:1 $ sbcl2 * (+ 1 2 3)3 64 * ( 2
template 3 bool cmp(O o, A a,B b){ 4 return o(a, b); 5 } 6 template 7 bool cmp(O
o,A a,B b,C... c){ 8 ...
分类:
编程语言 时间:
2014-06-07 04:42:31
阅读次数:
270
原文:javascript实现数据结构:广义表广义表是线性表的推广。广泛用于人工智能的表处理语言Lisp,把广义表作为基本的数据结构。广义表一般记作: LS =
(a1, a2, ..., an)LS是广义表的名称,n是它的长度,ai可以是单个元素,也可以是广义表,分别称为广义表LS的原子和子表。习...
分类:
编程语言 时间:
2014-06-05 14:59:05
阅读次数:
464