该文被密码保护。 阅读全文
posted @ 2015-03-30 20:00 mizz 阅读(1) 评论(0) 推荐(0) 编辑
该文被密码保护。 阅读全文
posted @ 2015-03-30 19:43 mizz 阅读(1) 评论(0) 推荐(0) 编辑
摘要: Poj 1717枚举状态+dpbias从中间向两边找...毕竟是自己想出来的第一道题 阅读全文
posted @ 2014-06-03 18:13 mizz 阅读(95) 评论(0) 推荐(0) 编辑
摘要: Problem description:given a string, find the longest palindrome string in itSolution:1.brute force O(n^3)just enumerate start and end of the substring... 阅读全文
posted @ 2014-04-29 17:03 mizz 阅读(114) 评论(0) 推荐(0) 编辑
摘要: 1.for a two dimension vector, we must assign at least the first dimension of the vector2.each dimension of an inner vector can be different3.if you do... 阅读全文
posted @ 2014-04-29 14:54 mizz 阅读(162) 评论(0) 推荐(0) 编辑
摘要: it's generally known to all that when pass a value as a parameter,such as an integer,a double or other type, any revision or other change can't make a... 阅读全文
posted @ 2014-04-29 00:55 mizz 阅读(124) 评论(0) 推荐(0) 编辑
摘要: while hand-writing the code,I meet with some trivial problems,which greatly worries me.1.since it's a singly list, if we don't modify the list, we hav... 阅读全文
posted @ 2014-04-29 00:21 mizz 阅读(142) 评论(0) 推荐(0) 编辑
摘要: 1.To survive among the ordinary,you must be strong and independent!2.Be a unique person and develop skills so that nobody can replace you!3.Since nans... 阅读全文
posted @ 2014-04-28 23:41 mizz 阅读(221) 评论(0) 推荐(0) 编辑
摘要: description:given two sorted singly list, merge them into one using constant additional spacealgorithm:we will reference the two linked list as list1 ... 阅读全文
posted @ 2014-04-27 21:44 mizz 阅读(215) 评论(0) 推荐(0) 编辑
摘要: C语言或C++中,数组元素全为指针的数组称为指针数组一维指针数组的定义为:类型名*数组标识符[数组长度]eg: int*ptr_array[10];以下内容来自百度百科链接http://baike.baidu.com/link?url=r6JRJbaleIw_69o-t8uO2vTF0r4oukf1... 阅读全文
posted @ 2014-04-27 20:48 mizz 阅读(8766) 评论(0) 推荐(0) 编辑