自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(6)
  • 资源 (2)
  • 收藏
  • 关注

原创 SCIP学习笔记-ex2.25--ex2.31

;Exercise 2.25. Give combinations of cars and cdrs that will pick 7 ;from each of the following lists:;(1 3 (5 7) 9)(define ex2.25-list1 (list 1 3 (list 5 7) 9))(define ex2.25-list1-get-7 (car (cd

2014-04-22 15:22:42 849

原创 SICP学习笔记5 ex2.17 -- ex2.23

; ex2.17(define (last-pair l) (if (null? (cdr l)) l (last-pair (cdr l)))); ex2.18(define (my_reverse l) (if (null? (cdr l)) l (append (my_reverse (cdr l)) (list (car l)

2014-04-18 12:15:07 827

原创 SICP学习笔4--邱奇整数

邱奇非负整数0的定义如下:

2014-04-17 11:45:28 625

原创 SICP学习笔3--lambda

(define (my_cons x y)  (lambda (m) (m x y)))(define (my_car z)  (z (lambda (p q) p)))(define (my_cdr z)  (z (lambda (p q) q)))

2014-04-15 20:28:40 831

原创 SICP学习笔2--循环与递归(iterative process and recursive process)

计算n!递归:(define (factorial n) (if (= n 1) 1 (* n (factorial (- n 1)))))

2014-04-15 14:14:35 937

原创 SICP学习笔记--求值策略 (Evaluation strategy) --应用次序 (Applicative order) vs 正常次序 (Normal order)

“应用次序”(或“最左最内”)求值称呼函数的实际参数按可归约表达式的后序遍历从左至右的求值的策略。不像传值调用,应用次序求值尽可能的在应用函数之前归约函数体内的项。

2014-04-15 12:55:01 2346

Linux kernel networking implementtation and theory

linux 下最新的介绍网络部分内核实现的书。如果你觉得自己网络部分的基础知识已经有些旧了。就看看这本。

2014-07-23

make electronics

Want to learn the fundamentals of electronics in a fun, hands-on way? With Make: Electronics, you'll start working on real projects as soon as you crack open the book. Explore all of the key components and essential principles through a series of fascinating experiments. You'll build the circuits first, then learn the theory behind them! Build working devices, from simple to complexYou'll start with the basics and then move on to more complicated projects. Go from switching circuits to integrated circuits, and from simple alarms to programmable microcontrollers. Step-by-step instructions and more than 500 full-color photographs and illustrations will help you use -- and understand -- electronics concepts and techniques. Discover by breaking things: experiment with components and learn from failure Set up a tricked-out project space: make a work area at home, equipped with the tools and parts you'll need Learn about key electronic components and their functions within a circuit Create an intrusion alarm, holiday lights, wearable electronic jewelry, audio processors, a reflex tester, and a combination lock Build an autonomous robot cart that can sense its environment and avoid obstacles Get clear, easy-to-understand explanations of what you're doing and why

2014-07-15

空空如也

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

TA关注的人

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