yangbb (25)in #cn • 6 years agoSICP练习2.31总结:递归调用原则该题实现如下: (define (tree-map pro tree) (map (lambda (x-tree) (if (pair? x-tree) (tree-map pro x-tree) (pro x-tree))) tree)) 递归调用原则:假设要实现的函数为F,只要满足如下条件就可以在函数体中递归调用F:…yangbb (25)in #cn • 6 years agoSICP练习2.29:递归快速准确地写递归的要点: 1、分清问题的子问题究竟是什么 2、实现最小子问题的解决方案 3、假设第n-1规模的问题已解决,写出第n规模问题的方案(这里的n不能理解为某个具体的数,而是该问题所有规模的通用表示,n可以等于1,也可以是问题的max,也可以是中间。yangbb (25)in #cn • 6 years agoSICP练习2.14思考假设R1,R2的上下界分别表示为l1,l2,u1,u2。那么第一个算并联电阻的下界的公式为:l1 l2/(u1+u2), 而第二个公式变形后的下界则为:l1 l2/(l1+l2)。所以Lem用着两个公式会得到不同的结果。yangbb (25)in #funny • 6 years agoYou've lost my trust...hahyangbb (25)in #tourism • 6 years agoA mountain city, a night cityDifferent scenery, the same persistence. Chiyou jiulicheng, love exile, dream back to the millennium, only to cure! Chongqing, a city full of love and righteousness, never…