自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 资源 (9)
  • 收藏
  • 关注

原创 Leetcode: Sort List

Sort a linked list in O(n log n) time using constant space complexity./** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; * ListNode(in

2013-11-17 17:47:42 3026 3

原创 Leetcode: Insertion Sort List

Sort a linked list using insertion sort.Leetcode一直处于pengding状态无法提交,等好了再提交吧,不过应该是没问题的。/** * Definition for singly-linked list. * struct ListNode { * int val; * ListNode *next; *

2013-11-15 17:29:38 3963 2

原创 Leetcode: LRU Cache

Design and implement a data structure for Least Recently Used (LRU) cache. It should support the following operations: get and set.get(key) - Get the value (will always be positive) of the key if

2013-11-11 20:19:25 11766 9

原创 Leetcode: Binary Tree Postorder Traversal

Given a binary tree, return the postorder traversal of its nodes' values.For example:Given binary tree {1,#,2,3}, 1 \ 2 / 3return [3,2,1].Note: Recursive solut

2013-11-09 15:12:52 4207

原创 Leetcode: Binary Tree Preorder Traversal

Given a binary tree, return the preorder traversal of its nodes' values.For example:Given binary tree {1,#,2,3}, 1 \ 2 / 3return [1,2,3].Note: Recursive soluti

2013-11-06 23:14:11 6446 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 the nodes' values.For example,Given {1,2,3,4}, reorder it to 

2013-11-03 22:10:47 4630 1

原创 Leetcode: Linked List Cycle II

Given a linked list, return the node where the cycle begins. If there is no cycle, return null.Follow up:Can you solve it without using extra space?/** * Definition for singly-linked list. *

2013-11-02 14:57:59 2303 1

数据挖掘引论-6.clustering.pdf

中国科学院 数据挖掘引论 刘莹 课件

2011-09-19

数据挖掘引论-5.classification.pdf

中国科学院 数据挖掘引论 刘莹 课件

2011-09-19

数据挖掘引论-4.ARM.pdf

中国科学院 数据挖掘引论 刘莹 课件

2011-09-19

数据挖掘引论-3.Preprocessing_upload.pdf

中国科学院 数据挖掘引论 刘莹 课件

2011-09-19

数据挖掘引论-2.Data_Warehouse.pdf

中国科学院 数据挖掘引论 课件 刘莹

2011-09-19

数据挖掘引论-1.Intro.pdf

中国科学院 数据挖掘引论 课件 刘莹

2011-09-19

Android获取运营商代码

Android获取运营商代码 IMSI MCC MNC MIN

2011-08-16

自动售货机的设计与实现

数字逻辑课程设计 自动售货机 VHDL

2009-08-31

数据结构 树和二叉树 ppt

我们老师的课件 ,是学数据结构的好东西,老师可是花了很多的心血啊, 树和二叉树。

2009-05-03

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除