写点什么

Programming abstractions in C 阅读笔记:p161-p165

作者:codists
  • 2023-09-16
    江西
  • 本文字数:1052 字

    阅读完需:约 3 分钟

《Programming Abstractions In C》学习第 57 天,开始第 4 章“Introduction to Recursion”的学习,p161-p165,总结如下。

一、技术总结

1.recursion vs stepwise refinement

答:p164, The strategy, called recursion is defined as any solution technique in which large problems are solved by reducing them to smaller problem of the same form. The italicized phrase(注:斜体短语指 the same form, 书上是用斜体表示的) is crucial to the definition, which otherwise describes the basic strategy of stepwise refinement。


把一个大问题分解为相同形式的小问题,这种策略称为“recursion(递归)”;把一个大问题分解为不同的小问题,这种策略称为“stepwise refinement(逐步求精)。


因为递归是把一个难的问题拆分为简单的问题进行处理,所以递归这种解决问题的方案也称为分而治之(divide-and-conquer)策略。

二、英语总结

1.with relatively little trouble 语法分析

答:p164,Because these operations are fimilar, most people learn to use the control statements for, while and if with relatively little trouble。“with relatively little trouble”这里使用 little 修饰 trouble,表示“麻烦较少”,而不是“小麻烦”,所以翻译的时候要转换一下:因为这些操作都是类似的,所以大多数人学习使用 for, while 和 if 控制语句相对容易一些。

2.refinement 什么意思?

答:(1)refinement < refine: refinement 是 refine 的名称形式, u. the process of making a substance pure。(2)refine: re- + fine: fine repeatedly(重复地 fine), to make sth pure(提炼)。(3)fine: vt. pury, clearify, to make finer in quality or size(使澄清,简化)。

3.almost 是什么意思?

答:adv. nearly but not quite,接近但是不完全,中文翻译成“几乎,近乎”,但是几乎后面跟形容词并不是很恰当。例如 p164,“As a problem-solving tool, recursion is so powerful that it at times seems almost magical.”,从英文的角度而言,almost magical 就是“nearly magical”,接近于 magical,但是并不是 magical。如果从中文角度,翻译成“近乎神奇”,这里的“神奇”就是名词的用法了,而不是形容词。

三、参考资料

1. 编程

(1)Eric S.Roberts,《Programming Abstractions in C》:https://book.douban.com/subject/2003414

2. 英语

(1)Etymology Dictionary:https://www.etymonline.com


(2) Cambridage Dictionary:https://dictionary.cambridge.org


欢迎搜索及关注:编程人(a_codists)

发布于: 刚刚阅读数: 7
用户头像

codists

关注

公众号:编程人 2021-01-14 加入

Life is short, You need Python

评论

发布
暂无评论
Programming abstractions in C阅读笔记:p161-p165_codists_InfoQ写作社区