会员
周边
新闻
博问
闪存
众包
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
Tony's Log
Algorithms, Distributed System, Machine Learning
博客园
::
首页
::
新随笔
::
联系
::
订阅
::
管理
::
公告
2015年8月20日
LeetCode "Shortest Word Distance"
摘要: A variation of linear scan..typedef pair Rec;class Solution {public: int shortestDistance(vector& words, string word1, string word2) { v...
阅读全文
posted @ 2015-08-20 15:32 Tonix
阅读(136)
评论(0)
推荐(0)
LeetCode "Verify Preorder Sequence in Binary Search Tree"
摘要: A typical recursion one.class Solution { bool _verify(vector &in, int i, int j, int low, int high) { if (i > j) return tr...
阅读全文
posted @ 2015-08-20 14:59 Tonix
阅读(249)
评论(0)
推荐(0)
LeetCode "Binary Tree Upside Down"
摘要: Recursion, a natural thought:class Solution { // Top : BottomRight std::pair rotate(TreeNode *p) { if (!p->left && !p->right) ...
阅读全文
posted @ 2015-08-20 13:23 Tonix
阅读(172)
评论(0)
推荐(0)