会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
双马尾是老公的方向盘
博客园
首页
新随笔
联系
管理
订阅
上一页
1
2
3
4
5
6
7
下一页
2017年7月31日
剑指offer---和为S的连续正数序列
摘要: 题目描述 小明很喜欢数学,有一天他在做数学作业时,要求计算出9~16的和,他马上就写出了正确答案是100。但是他并不满足于此,他在想究竟有多少种连续的正数序列的和为100(至少包括两个数)。没多久,他就得到另一组连续正数和为100的序列:18,19,20,21,22。现在把问题交给你,你能不能也很快
阅读全文
posted @ 2017-07-31 10:39 双马尾是老公的方向盘
阅读(93)
评论(0)
推荐(0)
2017年7月30日
剑指offer---把字符串转换成整数
摘要: class Solution { public: int StrToInt(string str) { int flag,index=0; if(str[0]=='+'){ flag=1; index++; } if(str[0]=='-'){ ...
阅读全文
posted @ 2017-07-30 23:00 双马尾是老公的方向盘
阅读(129)
评论(0)
推荐(0)
剑指offer---矩形覆盖
摘要: class Solution { public: int rectCover(int number) { if (number == 0) return 0; else if (number == 1) return 1; else if (number == 2) return 2; ...
阅读全文
posted @ 2017-07-30 22:29 双马尾是老公的方向盘
阅读(155)
评论(0)
推荐(0)
剑指offer---裴波拉契数列
摘要: class Solution { public: int Fibonacci(int n) { if (n != 0) { vector array; array.push_back(1); array.push_back(1); int k = 2;...
阅读全文
posted @ 2017-07-30 22:26 双马尾是老公的方向盘
阅读(167)
评论(0)
推荐(0)
剑指offer---变态跳台阶
摘要: class Solution { public: int jumpFloorII(int number) { if (number == 1) { return 1; } else if (number == 2) { return 2; ...
阅读全文
posted @ 2017-07-30 22:17 双马尾是老公的方向盘
阅读(132)
评论(0)
推荐(0)
剑指offer---跳台阶
摘要: class Solution { public: int jumpFloor(int number) { // if (number == 1) { return 1; } else if (number == 2) { return...
阅读全文
posted @ 2017-07-30 22:08 双马尾是老公的方向盘
阅读(96)
评论(0)
推荐(0)
剑指offer---尾到头打印链表
摘要: /** * struct ListNode { * int val; * struct ListNode *next; * ListNode(int x) : * val(x), next(NULL) { * } * }; */ class Solution { public: vector print...
阅读全文
posted @ 2017-07-30 22:00 双马尾是老公的方向盘
阅读(113)
评论(0)
推荐(0)
剑指offer---链表中环的入口结点
摘要: class Solution { public: ListNode* EntryNodeOfLoop(ListNode* pHead) { vector vec; ListNode* list = NULL; if (pHead == NULL) return NULL; int flag = 0; ...
阅读全文
posted @ 2017-07-30 21:47 双马尾是老公的方向盘
阅读(119)
评论(0)
推荐(0)
剑指offer---删除链表中重复的结点2
摘要: 递归版本:
阅读全文
posted @ 2017-07-30 21:39 双马尾是老公的方向盘
阅读(129)
评论(0)
推荐(0)
剑指offer---删除链表中重复的结点
摘要: class Solution { public: ListNode* deleteDuplication(ListNode* pHead) { if (pHead == NULL) return pHead; if (pHead->next == NULL) return pHead; int First = pHe...
阅读全文
posted @ 2017-07-30 21:24 双马尾是老公的方向盘
阅读(130)
评论(0)
推荐(0)
上一页
1
2
3
4
5
6
7
下一页
公告