当前位置:网站首页>1143_ SiCp learning notes_ Tree recursion
1143_ SiCp learning notes_ Tree recursion
2022-07-06 13:50:00 【grey_ csdn】
All learning summary :GitHub - GreyZhang/g_SICP: learn SICP and hack lisp.
A typical example of tree recursion is the solution of Fibonacci sequence , The above is a simple definition rule description . This description can be easily converted into a recursive function by code , The last screenshot of the above document is lisp How to implement .
If the replacement model is used for expansion , This is the solution process of Fibonacci sequence . It can be seen from here that , Half the work is actually repetitive . In fact, it can be analyzed from the characteristics of the code itself , Because every recursion calls the function twice .
This is an optimization of Fibonacci sequence solution , In fact, the optimization method is mainly aimed at the iterative part in the previous formula . In previous software design , The state saving and other work of these two parts are actually completely entrusted to the parser . And the improved way , Make a transition between the two maintenance states , In fact, the saving of some temporary information is not completely handled by the parser, but put into memory . The design of software is actually very easy to understand .
This is a test of the above software design . Equivalent functions can also be easily used python To do a writing test .
def fib(n):
if n <= 1:
return n
else:
return fib(n - 1) + fib(n - 2)
def fib_iter(a, b, n):
if n == 0:
return b
else:
return fib_iter(a + b, a, n - 1)
def new_fib(n):
return fib_iter(1, 0, n)
The computational effect of both languages is the same . I also compared the solution method with the first scheme , Solve in the computer fib(100) The process is very long . And the improved way , In fact, it has good execution efficiency , Whether it's lisp still python.
Here is another classic question : The combination of coins . The disassembly of this problem is divided into two steps , Described as the colored part above . About this description , In my own understanding, I should consider this : All the combination methods actually have 2 Kind of , One is that the first kind of coins are not used ; The other is the case of using at least one coin of the first kind . Then the case of using at least one coin of the first kind can be considered as the total amount minus the face value of one coin of the first kind , Any combination of the remaining amounts . such , It's easy to build the following recursive program .
such , Basically finished reading the content of tree recursion . Through the study of this chapter , I still see a useful way of thinking . however , The realization of many laws or methods is actually supported by certain data theory to a great extent . look , Mathematics is also a very important tool and method .
边栏推荐
- Programme de jeu de cartes - confrontation homme - machine
- [graduation season · advanced technology Er] goodbye, my student days
- FAQs and answers to the imitation Niuke technology blog project (I)
- 2. Preliminary exercises of C language (2)
- Wechat applet
- The latest tank battle 2022 - full development notes-3
- PriorityQueue (large root heap / small root heap /topk problem)
- 透彻理解LRU算法——详解力扣146题及Redis中LRU缓存淘汰
- Poker game program - man machine confrontation
- 使用Spacedesk实现局域网内任意设备作为电脑拓展屏
猜你喜欢
Caching mechanism of leveldb
3. Number guessing game
撲克牌遊戲程序——人機對抗
FAQs and answers to the imitation Niuke technology blog project (II)
2. Preliminary exercises of C language (2)
8. C language - bit operator and displacement operator
20220211-CTF-MISC-006-pure_ Color (use of stegsolve tool) -007 Aesop_ Secret (AES decryption)
It's never too late to start. The tramp transformation programmer has an annual salary of more than 700000 yuan
FAQs and answers to the imitation Niuke technology blog project (I)
【黑马早报】上海市监局回应钟薛高烧不化;麦趣尔承认两批次纯牛奶不合格;微信内测一个手机可注册俩号;度小满回应存款变理财产品...
随机推荐
7-6 矩阵的局部极小值(PTA程序设计)
Mortal immortal cultivation pointer-2
7-14 错误票据(PTA程序设计)
Mode 1 two-way serial communication is adopted between machine a and machine B, and the specific requirements are as follows: (1) the K1 key of machine a can control the ledi of machine B to turn on a
Wechat applet
2. Preliminary exercises of C language (2)
Safe driving skills on ice and snow roads
About the parental delegation mechanism and the process of class loading
5月14日杂谈
这次,彻底搞清楚MySQL索引
C语言入门指南
[the Nine Yang Manual] 2019 Fudan University Applied Statistics real problem + analysis
SRC mining ideas and methods
[hand tearing code] single case mode and producer / consumer mode
Using qcommonstyle to draw custom form parts
实验八 异常处理
Poker game program - man machine confrontation
3.输入和输出函数(printf、scanf、getchar和putchar)
Analysis of penetration test learning and actual combat stage
Programme de jeu de cartes - confrontation homme - machine