摘要: 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) 编辑
摘要: Problem illustration:given a n*n matrix, print its transition, for example , 90 degree clockwise,using only constant additional spaceanalysis:using O(... 阅读全文
posted @ 2014-04-27 18:43 mizz 阅读(202) 评论(0) 推荐(0) 编辑