码迷,mamicode.com
首页 >  
搜索关键字:tour    ( 464个结果
hdu 1224 Free DIY Tour(dp)
题目:         链接:点击打开链接 题意:          思路: 代码: #include #include #include using namespace std; int map[110][110]; int dp[110],next[110],ins[110]; int t,n,m; void output(int x) { if(x == -1)...
分类:其他好文   时间:2014-07-01 08:55:28    阅读次数:174
Swift学习——A Swift Tour 函数
Functions and Closures 函数和封闭性(闭包)Functions 函数的使用Swift中的函数定义和OC中有明显的差别了,使用func定义函数,在括号里定义參数和类型,用 -> 定义返回值类型func greet(name: String, day: String) -> Str...
分类:其他好文   时间:2014-06-29 19:26:28    阅读次数:209
Swift 初见
http://numbbbbb.gitbooks.io/-the-swift-programming-language-/chapter1/02_a_swift_tour.html本页内容包括:简单值(Simple Values)控制流(Control Flow)函数和闭包(Functions an...
分类:其他好文   时间:2014-06-28 18:55:25    阅读次数:279
Swift学习——Swift基础详解(一)
注:由于基础部分在Swift Tour 中已经大体的说明了,所以在详解中不会达到100%的原文释义 Constants and Variables  常量和变量 常量和变量都需要声明名称和类型(作为程序员,这些基础也就不说了),常量一次赋值不能改变,变量的值可以改变 Declaring Constants and Variables   声明常量和变量 常量和变量在...
分类:其他好文   时间:2014-06-27 07:53:38    阅读次数:183
C++学习指南
转载于stackoverflow:http://stackoverflow.com/questions/388242/the-definitive-c-book-guide-and-list 感谢George Stocker的总结Reference Style - All Levels A Tour...
分类:编程语言   时间:2014-06-25 13:28:14    阅读次数:314
Swift语言官方文档翻译(2)
A Swift Tour...
分类:其他好文   时间:2014-06-18 00:54:56    阅读次数:244
http://numbbbbb.github.io/the-swift-programming-language-in-chinese/chapter1/02_a_swift_tour.html
http://numbbbbb.github.io/the-swift-programming-language-in-chinese/chapter1/02_a_swift_tour.html
分类:Web程序   时间:2014-06-13 18:50:14    阅读次数:331
Swift学习——A Swift Tour 协议和扩展
Protocols and Extensions Protocols  协议的使用 使用关键字 protocol 定义一个协议 protocol ExampleProtocol { var simpleDescription: String { get } mutating func adjust() } 类,枚举和结构体都可以实现协议 class SimpleC...
分类:其他好文   时间:2014-06-08 17:09:31    阅读次数:254
A Swift Tour(4) - Objects and Classes
Objects and Classes(对象和类)用 class 关键字后面跟一个类名来创建一个class,在一个类中声明 常亮或变量,他存在于当前类的上下文,函数的方法是同样的var numberOfSides = 0 let numberOfSidesLet = 1 func...
分类:其他好文   时间:2014-06-08 00:44:09    阅读次数:383
Cyclic Tour HDUOJ 费用流
Cyclic TourTime Limit: 1000/1000 MS (Java/Others)Memory Limit: 32768/65535 K (Java/Others)Total Submission(s): 1399Accepted Submission(s): 712Problem ...
分类:其他好文   时间:2014-06-08 00:32:29    阅读次数:284
464条   上一页 1 ... 43 44 45 46 47 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!