白日梦想家
剑指Offer 二 剑指Offer 二
剑指Offer 二0-n-1中缺失的数字class Solution(object): def missingNumber(self, nums): lenth = len(nums) le
2019-04-18
剑指Offer 一 剑指Offer 一
剑指Offer 一二维数组中的查找class Solution(object): def findNumberIn2DArray(self, matrix, target): col = len(matri
2019-02-27
Leetcode链表(24,25,141,142,206) Leetcode链表(24,25,141,142,206)
Leetcode链表(24,25,141,142,206)206 反转链表 迭代 class Solution(object): def reverseList(self, head): cur, prev &#x
2019-01-13
最长递增子序列的数量 最长递增子序列的数量
最长递增子序列的数量 #include <cstdio> #include <cstring> #include <algorithm> using namespace std; typedef l
2016-02-18
4.4-4.15写题记录 4.4-4.15写题记录
由于清明节及其他原因,写题不多。 图书馆借的一本书上的题目:工程分配问题,这道题是模拟题代码不难,倒是题目意思初看时不好理解,看了好几遍才明白。 #include "cstdio" #include "cstr
2015-04-15
大整数类 问题(hdoj1002) 大整数类 问题(hdoj1002)
hdoj1002这道题大概是一月份就看到了,但是一直没有去处理。但大整数类问题在题目中比较常见,所以开始详细学习大整数类。 hdoj1002代码直接用刘汝佳的算法竞赛入门经典中的大整数BigInteger模板,运用这个模板基本能处理大部分大
2015-03-25