自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(34)
  • 资源 (1)
  • 收藏
  • 关注

转载 PCA 和 KLT

PCA

2016-12-27 10:08:21 538

原创 Leetcode 之 Remove Duplicates from Sorted List

Leetcode 之 remove duplicates from sorted list

2016-12-26 19:37:50 285

原创 Leetcode 之 Merge Two Sorted Lists

Leetcode 之 Merger Two Sorted Lists

2016-12-24 17:47:16 226

原创 Leetcode 之 Swap Nodes in Pairs

Leetcode 之 swap nodes in pairs

2016-12-24 15:54:29 392

原创 Leetcode 之 Intersection of Two Linked Lists

Leetcode 之 Intersection of Two Linked Lists

2016-12-24 11:58:47 301

原创 Leetcode 之 isPalindrome

Leetcode 之 isPalindrome

2016-12-24 10:56:33 704

原创 Leetcode 中 ListNode 的 reverse以及 快慢指针取中点

reverse List的方法 以及 使用快慢指针法得到List的后半段List的方法

2016-12-24 10:49:31 617

原创 Leetcode 之 Remove Linked List Elements

Leetcode 之 Remove Linked List Elements

2016-12-23 23:17:36 270

原创 Leetcode 之 Delete Node in a Linked List

leetcode 之 Delete Node in a Linked List

2016-12-23 21:59:28 260

原创 Leetcode 之 Remove Nth Node From End of List

leetcode 之 Remove Nth Node From End of List

2016-12-15 19:53:54 254

原创 Leetcode 之 Minimum Moves to Equal Array Elements II

Leetcode 之 Minimum Moves to Equal Array Elements II

2016-12-15 14:27:05 283

原创 Leetcode 之 Find All Anagrams in a String

Leetcode 之 Find All Anagrams in a String

2016-12-15 11:05:40 309

原创 Leetcode 之 Intersection of Two Arrays II

leetcode 之 Intersection of Two Arrays II

2016-12-14 23:23:40 346

原创 Leetcode 之 Design Twitter

leetcode 之 Design Twitter

2016-12-13 10:28:52 313

原创 SCP 本地下载服务器文件/服务器下载其他服务器文件

scp 本地下载服务器文件

2016-12-12 22:27:27 847

转载 SCP 后台传文件

SCP

2016-12-11 16:03:41 976

原创 SSH 远程连接服务器

之前只会用桌面版服务器,暑期去美国实习一段时间,没啥学会的,倒是知道怎么用server版的服务器了。一般都会有一个类似email地址的地址给你,就是你登录服务器的地址,我的是5*@**.cs.virginia.edu,用ssh登录的方法就是: 1. 打开terminal; 2. 输入 ssh 5*@**.cs.virginia.edu 3. 然后会弹出一个密码输入的提示,输入你的密码就好了~

2016-12-11 13:22:02 517

原创 Leetcode 之 4Sum II

Leetcode 之 4Sum II

2016-12-11 13:13:00 284

原创 Leetcode 之 twoSum, ThreeSum, FourSum(K-Sum)问题

Leetcode之k sum 问题

2016-12-10 09:17:54 513

原创 论文:Sketch-a-Net that Beats Humans(附带CNN的理解)

这周看了一篇论文,是学校要求的,题目叫做Sketch-a-Net that Beats Humans,由QM的老师发表在BMVC 2015。 这篇论文我看了一下,感觉思路上还是很有趣的,而且解决的问题也比较有价值,但为什么只发在了一个C类会议上,有点诧异。论文是基于CNN做了一点improvement的。我也是借这个机会稍微了解了一下CNN, 之前看过neutral network,所以看CNN还是

2016-12-09 16:13:57 3157

原创 Leetcode 之 IslandPerimeter

Leetcode之 IslandPerimeter

2016-12-06 20:36:28 369

原创 Leetcode之 Two Sum

Leetcode 之 TwoSum

2016-12-06 20:09:01 208

原创 O(nlogn)排序算法--QuickRank

O(nlogn)递归排序

2016-12-06 11:22:42 377

原创 Leetcode 之 ContainsDuplicate III

Leetcode 之 ContainsDuplicateIII (TreeSet 的使用)

2016-12-06 10:41:34 258

原创 Leetcode中常用排序 之 O(n)时间复杂度排序

O(n)排序算法

2016-12-05 23:30:03 1204

原创 Leetcode 之 Majority Element I-- HashMap法以及 摩尔投票法

Leetcode 之Majority Element I

2016-12-05 21:41:32 565

原创 Leetcode 之 Major Element II --摩尔投票法

Leetcode 之 Majority Element II

2016-12-05 21:34:13 1088

原创 Leetcode之 Find the Duplicate Numbe

Leetcode之Find the Duplicate Number

2016-12-04 19:37:08 293

原创 Leetcode之Linked List Cycle II

Leetcode之Linked List Cycle II

2016-12-04 18:24:24 242

转载 Leetcode 之 Linked List Cycle I

Linked List Cycle I Given a linked list, determine if it has a cycle in it.Follow up: Can you solve it without using extra space?思路《转载》 这是一道非常经典的双指针题。我们从头设置一个快指针,一个慢指针。快指针一次走两步,慢指针一次走一步,如果快指针走到了尽头,则说

2016-12-04 16:43:25 273

原创 Leetcode 之 MissingNumber

Leetcode 之 Missing Number

2016-12-04 15:38:32 311

原创 Leetcode 之GameofLife

leetcode之 GameofLife

2016-12-04 12:57:47 350

原创 Insert Delete GetRandom O(1) - Duplicates allowed in JAVA

Leetcode 算法之一

2016-12-04 01:29:24 422

原创 论文阅读:SCTM

SCTM论文的名字叫做Going Beyond Corr-LDA for Detecting Specific Comments on News & Blogs。亮点 之前有一篇叫corr-lda的,思想是利用了article与review的correspondence, corr-lda总结下来就是:article沿用了LDA的思想,但是认为comment和article是有联系的,c

2016-12-02 23:13:32 972

deep learning yoshua bengio 中文版

中文版 深度学习

2016-12-10

空空如也

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

TA关注的人

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