自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(5)
  • 资源 (17)
  • 收藏
  • 关注

原创 SICP Exercise 4.16

首先,我们先定义一下关于unassigned的定义和函数: ;;Representing unassigned constant (define UNASSIGNED (quote '*unassigned*)) (define (unassigned? val) (eq? val '*unassigned*)) 1、修改lookup-variable-value,这个比较简单,

2012-05-31 21:53:33 1247

原创 SICP Exercise 4.14

Exercise 4.14 1、Eva的map能够工作是应该的,因为Eva在求值器中定义了map。 2、那么Louis的map为什么不能工作呢? 首先,让我们来看一下map的基本使用方式(在scheme中,而不是在求值器中): (map (lambda (x) (* 2 x)) '(1 2 3 4)) => (2 4 6 8)可以看出map函数的使用方式和其他作为基本过程安装的函数(如

2012-05-30 22:41:10 1371

原创 SICP Exercise 4.13

;; Exercise 4.13 我认为make-unbound!应该只删除第一个frame里面的约束。我的原因有一下几点: 1,make-unbound!和define对应,前者是删除约束,而后者是添加约束(有时是改变已有的约束)。define是在第一个frame中定义约束,所以make-unbound!也应该是从第一个框架中删除约束。 2,根据封装的原则,不应该在当前enviro

2012-05-30 21:08:36 1217

转载 network-manager与interfaces冲突

【转自】http://blog.csdn.net/xinling1588/article/details/7037294,我在这里只是修改了一些原文章的格式。 Ubuntu下修改网络配置有两种方式:图形界面方式(network-manager)和修改/etc/network/interfaces,但是如果两种方式的网络设置不同,就会产生冲突,即:network-manager与/etc/netw

2012-05-26 22:42:03 3058

原创 单向链表反转

今天在看一篇文章中说RethinkDB公司在面试的过程中发现很多程序员不能通过下面的题目: 请写出一个C函数,实现反转一个单向链接表的功能。 我就试试自己能否做出来。我现在越来越不相信写的代码了,必须经过我的测试之后,我稍微放心。所以我也写了测试程序,我希望下面的代码能够达到好的可读性。 #include #include #include #define ARRAY_SIZ

2012-05-10 15:40:39 1096

Paradigms of Artificial Intelligence Programming: Case Studies in Common Lisp

本书是google研究院的主管的书籍,首先介绍了common lisp语言,然后用这个语言为例去讲解觉经典(基于逻辑、规则的)人工智能问题。并且展示了优秀的编程风格,及方法。

2012-06-25

the+linux+programming+interface

the+linux+programming+interface堪比apue

2011-07-19

Unix Programming Environment

Unix Programming Environment Brian W.Kernighan

2011-07-19

Algorithm 4 edition

Robert Sedgewick的新书,用java语言描述。

2011-07-12

高德纳论文选--knuth

1 Selected.Papers.on.Computer.Languages(Donald.E.Knuth).djvu 2 Selected.Papers.On.Computer.Science.(Donald.E.Knuth).djvu 3 Selected.Papers.on.Discrete.Mathematics.(Donald.E.Knuth).djvu 4 Selected.Papers.on.Analysis.of.Algorithms(Donald.E.Knuth).djvu

2011-04-10

吉林大学《可计算性与计算复杂性》 笔记

该资源的介绍请看这里: http://blog.csdn.net/zzljlu/archive/2011/04/09/6311398.aspx 注意:该笔记还没有最终完成,欢迎各种反馈!

2011-04-10

Basic Papers on Undecidable Propositions, Unsolvable Problems and Computable Functions

这里包括了哥德尔、丘奇、图灵、克莱因、戴维斯、波斯特等牛人的论文,enjoy it!

2011-03-09

The Annotated Turing

Computer programming legend and author of the highly acclaimed book Code: The Hidden History of Computer Hardware and Software takes readers on a journey through one of the seminal papers in the history of computing. 对图灵1936年论文的注解。

2010-12-13

深入理解计算机系统(原书第2版)

AMAZON五星图书,最伟大计算机科学教材之一; ·卡耐基梅隆大学计算机学院院长,IEEE和ACM双院士倾力推出; ·超过80所美国和世界一流大学计算机专业选用本书为教材

2010-10-20

Apress.Scripting.Intelligence.Web.3.0.Information.Gathering.and.Processing.Jul.2009.pdf

又一本关于web 3.0的书籍,是不是web 3.0就要到来呢?

2010-08-04

lucene in action, 2e

lucene经典入门书籍,欢迎lucene爱好者下载,学习

2010-08-04

Semantic Web Programming

让语义网技术走向实践! 欢迎语义网相关的朋友一起学习!可以加我qq:330786023,。

2010-08-03

Algorithms of the Intelligent Web

类似于《集体智慧编程》的一本书,并且提供了很多很好的论文参考,不多说了,看目录: 1 ■ What is the intelligent web? 1 2 ■ Searching 21 3 ■ Creating suggestions and recommendations 69 4 ■ Clustering: grouping things together 121 5 ■ Classification: placing things where they belong 164 6 ■ Combining classifiers 232 7 ■ Putting it all together: an intelligent news portal 278 Appendix A Introduction to BeanShell 317 B Web crawling 319 C Mathematical refresher 323 D Natural language processing 327 E Neural networks 330

2010-07-31

programming the semantic seb

toby的作品,品质的保证,本书和《集体智慧》编程一样,采用python语言,以简洁的方式来阐述语义网编程。

2010-03-23

语义网本体综述.PDF

一篇比较好的关于语义网本体的综述,但是有点老了。

2010-03-02

Morgan.Kaufmann.Semantic.Web.for.the.Working.Ontologist

关于建立可用本体的好书,提供给学习语义的同学

2010-03-02

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除