首页 > 其他分享 >Programming Abstractions in C阅读笔记:p246-p247

Programming Abstractions in C阅读笔记:p246-p247

时间:2024-01-14 11:23:19浏览次数:37  
标签:considerably p246 p247 Abstractions Programming 读者

《Programming Abstractions in C》学习第68天,p246-p247总结,总计2页。

一、技术总结

本章通过“the game of nim(尼姆游戏)”,这类以现实生活中事物作为例子进行讲解的情况,往往对学习者要求比较高,需要学习者具备一定的人文、历史知识或专业知识,如果缺乏这方面的知识,就会导致读者在阅读过程中进度缓慢——如果对尼姆游戏比较熟悉的读者,那么便很快就知道作者在说什么,甚至可以跳过对规则的介绍部分。而不了解的读者,则需要一步一步的跟随作者去了解游戏规则。本质上教材在编写初期已经确定了对读者的要求,而作为读者,既要筛选合适的教材,同时也要主动的提升自己专业水准,丰富自己的知识范畴,最终使自己的水平能够达到阅读专业的、深刻的、经典的著作,这是一个人成长的必经之路。

二、英语总结

1.considerably是什么意思?

答:

(1)considerably < considerable。

(2)considerable: con-(with, together) + sideris("heavenly body,天体")。Meaning "pretty large" is from 1650s (implied in considerably), from now-archaic earlier sense of "Worthy of regard or attention" (1610s)。

p245,Although backtracking is easiest to illustrate in the context of a maze, the trategy is considerably more general。

2.unenvialbe是什么意思?

答:

(1)un-(not) + enviable。adj. an unenviable situation is unpleasant(不值得羡慕的)。

(2)enviable: envy + -able。adj. causing you to wish that you also possessed it(令人羡慕的); desirable。

(3)envy: *en(in) + videre(to see): vt. to wish that you had a quality or possession that another person has(羡慕,嫉妒)。

3.nonetheless是什么意思?

答:

(1)none:the absence or lack of sth。

(2)-theless: this suffix is used to form adverbs or conjunctions indicating that sth is done or takes place despite the thing mentioned。

三、其它

四、参考资料

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)

标签:considerably,p246,p247,Abstractions,Programming,读者
From: https://www.cnblogs.com/codists/p/17963476

相关文章

  • Programming Abstractions in C阅读笔记:p235-p241
    《ProgrammingAbstractionsinC》学习第66天,p235-p241总结。一、技术总结1.backtrackingalgorithm(回溯算法)(1)定义p236,Formanyreal-worldproblem,thesolutionprocessconsitsofworkingyourwaythroughasequenceofdecisionpointsinwhicheachchoicleadsyo......
  • (15-418)Lecture 3 Parallel Programming Abstractions
    抽象VS实现实例:ISPC程序ISPC是一种SPMD(singleprogrammultipledata)编译器。利用ISPC编写的计算sin(x)的程序如下图:ISPC提供了一种抽象,当调用ISPC函数时(即程序中调用sinx的语句),会产生一个gang,这个gang含有多个ISPC实例,每个实例会执行自己的代码,当每个实例都执行完后,恢复原先......
  • Programming Abstractions in C阅读笔记:p196
    《ProgrammingAbstractionsinC》学习第63天,p196总结。涉及到编程之外的知识,依然是读起来很费劲,需要了解作者在书中提到的人物(EdouardLucas)、地点(Benares)、神话传说(Brahma)等等。虽然深知自己做不到对人文知识,历史知识精通,但也希望能记住,从而在下次遇到的时候能够阅读下去,......
  • Programming Abstractions in C阅读笔记:p202-p234
    《ProgrammingAbstractionsinC》学习第65天,p202-p234总结。一、技术总结完成第五章学习,第五章介绍递归在实际问题中的进一步应用,例如汉诺塔问题,数学中的排列问题,更有难度。使用递归解决问题时有时候需要借助wrapperfunction。二、英语总结1.scrabble是什么意思?答:*sker-("tocu......
  • Programming Abstractions in C阅读笔记:p202-p234
    《ProgrammingAbstractionsinC》学习第65天,p202-p234总结。一、技术总结完成第五章学习,第五章介绍递归在实际问题中的进一步应用,例如汉诺塔问题,数学中的排列问题,更有难度。使用递归解决问题时有时候需要借助wrapperfunction。二、英语总结1.scrabble是什么意思?答:*sker-(......
  • Programming abstractions in C阅读笔记:p184-p195
    《ProgrammingAbstractionsInC》学习第61天,p184-p195总结。一、技术总结1.mutualrecursion2.naturalnumber(1)定义p184,Ifyoulimitthedomainofpossiblevaluestothesetofnaturalnumbers,whicharedefinedsimplyasthesetofnonnegativeintegers.3.最大公约......
  • Programming Abstractions in C阅读笔记:p196
    《ProgrammingAbstractionsinC》学习第63天,p196总结。涉及到编程之外的知识,依然是读起来很费劲,需要了解作者在书中提到的人物(EdouardLucas)、地点(Benares)、神话传说(Brahma)等等。虽然深知自己做不到对人文知识,历史知识精通,但也希望能记住,从而在下次遇到的时候能够阅读下去......
  • Programming abstractions in C阅读笔记:p181-p183
    《ProgrammingAbstractionsInC》学习第61天,p181-p183总结。一、技术总结1.linearsearchalgorithm2.lexicographicorder(字典顺序)3.binarysearchalgorithm(二分查找算法)/**1.二分查找也应用了递归的思想。*2.这里的代码只是demo*/#include<stdio.h>#incl......
  • Programming abstractions in C阅读笔记:p179-p180
    《ProgrammingAbstractionsInC》学习第60天,p179-p180总结。一、技术总结1.palindrome(回文)(1)包含单个字符的字符串(如"a"),或者空字符串(如"")也是回文。(2)示例:“level”、"noon"。2.predicatefunction(1)predicate的意思pre-("forth")+*deik-("show"),“t......
  • Programming abstractions in C阅读笔记:p176-p178
    《ProgrammingAbstractionsInC》学习第59天,p176-p178总结。一、技术总结1.addtivesequencestn=tn-1+tn-2序列:3,7,10,17,27,44,71,115,186,301,487,788,1275,...p177,Asageneralclass,thesequencesthatfollowthispatternarecalledadditivesequen......