上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 22 下一页
摘要: 1、sizeof返回的必定是无符号整形,在标准c中通过 typedef 将返回值类型定义为size_t. 若用printf输出size_t类型时,C99中定义格式符%zd;若编译器不支持可以尝试%u或%lu. sizeof,获取操作数占用的内存空间字节数,返回类型size_t; strlen,获取字 阅读全文
posted @ 2016-12-11 23:04 泡面小王子 阅读(1576) 评论(0) 推荐(0) 编辑
摘要: 题目的意思是说一个长度为m的杆,上面有n个蚂蚁,告诉每个蚂蚁的初始位置,每个蚂蚁速度都是一样的,问所有的蚂蚁离开杆的最短和最长时间是多少。 模拟题,所有的蚂蚁看成一样的,可以这样理解,即使相撞按反方向走,但是两只蚂蚁从开始爬到相撞到继续相背爬,这个时间都是一样的。所以直接对每只蚂蚁分别处理,得出他的 阅读全文
posted @ 2016-11-21 09:27 泡面小王子 阅读(127) 评论(0) 推荐(0) 编辑
摘要: Digital Roots 时间限制(普通/Java):1000MS/3000MS 运行内存限制:65536KByte总提交:456 测试通过:162 描述 The digital root of a positive integer is found by summing the digits o 阅读全文
posted @ 2016-11-14 21:56 泡面小王子 阅读(186) 评论(0) 推荐(0) 编辑
摘要: Children are taught to add multi-digit numbers from right-to-left one digit at a time. Many find the "carry" operation - in which a 1 is carried from 阅读全文
posted @ 2016-11-12 21:17 泡面小王子 阅读(410) 评论(0) 推荐(0) 编辑
摘要: For each list of words, output a line with each word reversed without changing the order of the words. Input You will be given a number of test cases. 阅读全文
posted @ 2016-11-12 20:06 泡面小王子 阅读(244) 评论(0) 推荐(0) 编辑
摘要: Description The Cantor set was discovered by Georg Cantor. It is one of the simpler fractals. It is the result of an infinite process, so for this pro 阅读全文
posted @ 2016-11-11 23:08 泡面小王子 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 求一个数列的逆序数 逆序对:数列s[1],a[2],a[3]…中的任意两个数s[i],s[j] (i<j),如果s[i]>s[j],那么我们就说这两个数构成了一个逆序对 逆序数:一个数列中逆序对的总数 如数列 3 5 4 8 2 6 9 (5,4)是一个逆序对,同样还有(3,2),(5,2),(4, 阅读全文
posted @ 2016-11-07 22:31 泡面小王子 阅读(2404) 评论(0) 推荐(0) 编辑
摘要: http://www.cnblogs.com/A-Song/archive/2012/01/29/2331204.html 阅读全文
posted @ 2016-11-06 19:36 泡面小王子 阅读(105) 评论(0) 推荐(0) 编辑
摘要: 参考:http://www.cppblog.com/prayer/archive/2009/08/17/93594.html 阅读全文
posted @ 2016-10-25 09:28 泡面小王子 阅读(95) 评论(0) 推荐(0) 编辑
摘要: 组合类: 组合类的概念就是:指在一个类的数据成员中含有一个或多个类的对象,拥有这样结构的类就叫组合类。这种以数据成员身份出现的类对象就叫子对象。 继承和组合都可以实现一个类重用另一个类的行为功能,那么如何选择用组合类还是用继承? 当B与A属于同一类的范畴,并且B"is a kind of"A,一般应 阅读全文
posted @ 2016-10-25 09:19 泡面小王子 阅读(1300) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 22 下一页