Boostable

  博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页

2014年8月22日

摘要: LeetCode: Word BreakGiven a string s and a dictionary of words dict, determine if s can be segmented into a space-separated sequence of one or more di... 阅读全文
posted @ 2014-08-22 22:17 Boostable 阅读(297) 评论(0) 推荐(0) 编辑

摘要: LeetCode: Linked List CycleGiven a linked list, determine if it has a cycle in it. Follow up:Can you solve it without using extra space?地址:https://oj.... 阅读全文
posted @ 2014-08-22 21:59 Boostable 阅读(328) 评论(0) 推荐(0) 编辑

2014年8月20日

摘要: Foundations of Machine Learning: Boosting Boosting是属于自适应基函数(Adaptive basis-function Model(ABM))中的一种模型。自适应基函数可以表示成:$$f(x)=w_0+\sum_{m=1}^Mw_m\phi_m(x).... 阅读全文
posted @ 2014-08-20 15:49 Boostable 阅读(726) 评论(0) 推荐(0) 编辑

2014年8月1日

摘要: LeetCode: Reorder List Given a singly linked list L: L0→L1→…→Ln-1→Ln,reorder it to: L0→Ln→L1→Ln-1→L2→Ln-2→…You must do this in-place without altering ... 阅读全文
posted @ 2014-08-01 10:21 Boostable 阅读(263) 评论(0) 推荐(0) 编辑

摘要: LeetCode: Binary Tree Traversal题目:树的先序和后序。后序地址:https://oj.leetcode.com/problems/binary-tree-postorder-traversal/先序地址:https://oj.leetcode.com/problems/... 阅读全文
posted @ 2014-08-01 10:03 Boostable 阅读(221) 评论(0) 推荐(0) 编辑

2014年7月28日

摘要: LeetCode: LRU CacheDesign and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set.... 阅读全文
posted @ 2014-07-28 22:36 Boostable 阅读(371) 评论(0) 推荐(0) 编辑

摘要: LeetCode: Insertion Sort ListSort a linked list using insertion sort.地址:https://oj.leetcode.com/problems/insertion-sort-list/算法:按题目的意思,采用插入排序对链表进行排序,时... 阅读全文
posted @ 2014-07-28 22:19 Boostable 阅读(192) 评论(0) 推荐(0) 编辑

摘要: LeetCode: Sort ListSort a linked list in O(n log n) time using constant space complexity.地址:https://oj.leetcode.com/problems/sort-list/算法:采用分治的思想,首先利用... 阅读全文
posted @ 2014-07-28 22:16 Boostable 阅读(205) 评论(0) 推荐(0) 编辑

2014年7月27日

摘要: LeetCode: Max Points on a LineGiven n points on a 2D plane, find the maximum number of points that lie on the same straight line.地址:https://oj.leetcod... 阅读全文
posted @ 2014-07-27 21:58 Boostable 阅读(278) 评论(0) 推荐(0) 编辑

摘要: LeetCode: Reverse Words in a String:Evaluate Reverse Polish NotationEvaluate the value of an arithmetic expression in Reverse Polish Notation.Valid op... 阅读全文
posted @ 2014-07-27 21:18 Boostable 阅读(174) 评论(0) 推荐(0) 编辑

上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页