1.
迭代程序的设计:基础元素迭代程序的实现,通常包括下了以下五个部分:计数器(Count):用于标记循环的次数初始化(Initiate):在循环外部进行初始化正确的结束测试(Right
End Test):在什么情况下结束通常与计数器(Count)密切相关循环部分的代码块:该部分代码块通常包含了对...
分类:
其他好文 时间:
2014-06-29 13:49:03
阅读次数:
318
原题地址:https://oj.leetcode.com/problems/best-time-to-buy-and-sell-stock-ii/题意:Say
you have an array for which theithelement is the price of a given stoc...
分类:
编程语言 时间:
2014-06-06 20:04:46
阅读次数:
400
The count-and-say sequence is the sequence of
integers beginning as follows:1, 11, 21, 1211, 111221, ...1is read off as"one
1"or11.11is read off as"tw...
分类:
其他好文 时间:
2014-06-06 19:53:31
阅读次数:
203
这道题本来想对了,可是因为hdu对pascal语言的限制是我认为自己想错了,结果一看题解发现自己对了……题意:给以字符串计算出以前i个字符为前缀的字符中在主串中出现的次数和如:num(abab)=num(a)+num(ab)+num(aba)+num(abab)=2+2+1+1=6;题解:next[...
分类:
其他好文 时间:
2014-06-06 17:30:22
阅读次数:
227
原题地址:https://oj.leetcode.com/problems/distinct-subsequences/题意:Given
a stringSand a stringT, count the number of distinct subsequences ofTinS.A
subseq...
分类:
编程语言 时间:
2014-06-06 09:59:43
阅读次数:
330
protocol Container { typealias ItemType mutating
func append(item: ItemType) mutating func removelast() -> ItemType var count:
Int {get} ...
分类:
其他好文 时间:
2014-06-05 20:10:14
阅读次数:
319
一、ZipFile ZipFile类用于选择文件或文件夹进行压缩生成压缩包。
常用属性:属性说明Count文件数目(注意是在ComitUpdat之后才有)Password压缩包密码Size压缩包占用空间大小Name压缩包名称,默认输出是文件路径ZipEntry压缩包里的文件,通过索引[]访问
...
分类:
其他好文 时间:
2014-06-05 19:52:27
阅读次数:
376
水题。描写叙述的还挺麻烦的,实际上就是纸老虎,用两个string,一个存上一轮的结果,一个用来更新出这一轮的结果,每次扫描上一轮,统计一个字符出现的次数,然后把这个次数和字符增加到这一轮的字符串中就能够了。class
Solution {public: string countAndSay(i...
分类:
其他好文 时间:
2014-06-05 18:34:43
阅读次数:
204
#include #include #include #include #include
#define BUFFER_COUNT 5int Buffer[BUFFER_COUNT]; //指针数组int front = 0;int tail =
0;sem_t SemProd;sem_t SemC...
分类:
编程语言 时间:
2014-06-05 16:57:05
阅读次数:
259
问题描述:在后台添加了一个app报错:Call to a member function
get_users_count()Fatal error: Call to a member function get_users_count() on a
non-object in \includes\ec...
分类:
其他好文 时间:
2014-06-05 13:46:23
阅读次数:
235