摘要: American swim coach John Leonard stirred the controversy over Ye Shiwen’s incredible 400 IM describing it as “unbelievable”, “suspicious” and “disturbing” (as reported in the Guardian). Of course the suspicion, given China’s history and secretive nature, is that Ye Shiwen has been aided by performan 阅读全文
posted @ 2012-08-07 12:44 微雪 阅读(271) 评论(0) 推荐(0)
摘要: C++/C学习笔记(六)1.结构(struct)(1)定义C语言支持把基本数据类型组合起来形成更大的构造数据类型,这就是C语言的struct,有时也称为用户自定义数据类型(UDT)。构造数据类型还可以嵌套(对象嵌入)和引用(对像关联)。构造数据类型是一个递归的定义:①由若干基本数据类型组合而成的类型是构造数据类型;②由若干基本数据类型和构造数据类型组合而成的类型是构造数据类型;③由若干构造数据类型组合而成的类型是构造数据类型;语言本身的这种能力使我们能够定义非常复杂的数据结构,例如树(tree)、链表(list)、映射(map)等.(2)关键字struct与... 阅读全文
posted @ 2012-08-07 11:21 微雪 阅读(392) 评论(0) 推荐(0)