码迷,mamicode.com
首页 >  
搜索关键字:thinking in c++    ( 826个结果
【菜鸟也疯狂UML系列】——概述
《信息系统开发与管理》,《软件工程》这两本书中都有提到过UML,想必我们对UML已经不陌生了吧,虽说很熟悉,但是只是了解而已,而今天《UML基础与应用》and 《大象:Thinking in UML》将带领我们进入UML的内心世界,让我们与UML交个知心朋友吧!    概述导图 解释说明     概述嘛,讲的都是宏观上的东西,对于知识点不是很详细,但是却很重要...
分类:其他好文   时间:2014-11-12 23:03:24    阅读次数:229
Think in java 源码如何导入
thinking in java 源码导入...
分类:编程语言   时间:2014-11-12 16:31:11    阅读次数:226
Trees on the level
Background Trees are fundamental in many branches of computer science. Current state-of-the art parallel computers such as Thinking Machines' CM-5 are based on fat trees. Quad- and octal-trees are f...
分类:其他好文   时间:2014-11-11 22:56:41    阅读次数:239
UVA 10815 Andy's First Dictionary(字符处理)
Andy, 8, has a dream - he wants to produce his very own dictionary. This is not an easy task for him, as the number of words that he knows is, well, not quite enough. Instead of thinking up all the wo...
分类:其他好文   时间:2014-11-08 07:06:02    阅读次数:214
Java学习从入门到精通(2) [转载]
Java Learning Path(二)、书籍篇 学习一门新的知识,不可能指望只看一本,或者两本书就能够完全掌握。需要有一个循序渐进的阅读过程。我推荐Oreilly出版的Java系列书籍。 在这里我只想补充一点看法,很多人学习Java是从《Thinking in Java》这本书入手的...
分类:编程语言   时间:2014-11-07 12:34:37    阅读次数:113
[Erlang危机]Erlang In Danger 序言
IntroductionOn Running Software运行时软件There’s something rather unique in Erlang in how it approaches failure compared to most other programming languages. There’s this common way of thinking where the...
分类:其他好文   时间:2014-11-06 20:04:07    阅读次数:296
Thinking in scala (8)---- 乘幂计算
递归的方式:b^n = (b^(n/2))^2 若n是偶数b^n = b*(b^(n-1)) 若n是奇数迭代的方式product:存储中间结果,初始化为1b^n = (b^2)^(n/2) * product 若n是偶数b^n = b^(n-1) * product*b 若n是奇数递归方式比较简单,...
分类:其他好文   时间:2014-11-06 12:44:33    阅读次数:174
A problem is easy
A problem is easy描述When Teddy was a child , he was always thinking about some simple math problems ,such as “What it’s 1 cup of water plus 1 pile of d...
分类:其他好文   时间:2014-11-02 17:57:15    阅读次数:141
Thinking in scala (6)----高阶函数----返回一个函数
在Thinking in scala (5)----高阶函数* 里面,我们演示了如何把一个函数作为参数传递给另外一个函数。在本文里面,我们来演示函数式编程另外一个重要的特性:返回一个函数。首先来看这么一段代码:code piece 1:def sum(f:Int=>Int):(Int,Int)=>I...
分类:其他好文   时间:2014-10-31 11:40:31    阅读次数:165
Thinking in scala (4)----阶乘与尾递归
code1:object factorial{ def main(args:Array[String])={ println(factorial(args(0).toInt)) } def factorial(x:Int):Int = if (x==0) 1 else x * fa...
分类:其他好文   时间:2014-10-29 12:52:22    阅读次数:176
826条   上一页 1 ... 72 73 74 75 76 ... 83 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!