自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

SnailTyan

纸上得来终觉浅,绝知此事要躬行。

  • 博客(9)
  • 资源 (3)
  • 收藏
  • 关注

原创 Leetcode 653. Two Sum IV - Input is a BST

文章作者:Tyan 博客:noahsnail.com  |  CSDN  |  简书 1. Description 2. Solution Version 1 /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *l...

2019-01-31 16:28:04 439

原创 Leetcode 167. Two Sum II - Input array is sorted

文章作者:Tyan 博客:noahsnail.com  |  CSDN  |  简书 1. Description 2. Solution Version 1 class Solution { public: vector<int> twoSum(vector<int>& numbers, int target)...

2019-01-31 15:39:37 294

原创 Leetcode 767. Reorganize String

文章作者:Tyan 博客:noahsnail.com  |  CSDN  |  简书 1. Description 2. Solution class Solution { public: string reorganizeString(string S) { int length = S.size(); int maximum...

2019-01-31 14:08:27 538

原创 Leetcode 740. Delete and Earn

文章作者:Tyan 博客:noahsnail.com  |  CSDN  |  简书 1. Description 2. Solution class Solution { public: int deleteAndEarn(vector<int>& nums) { int points = 0; in...

2019-01-31 10:58:17 556

原创 Leetcode 874. Walking Robot Simulation

文章作者:Tyan 博客:noahsnail.com  |  CSDN  |  简书 1. Description 2. Solution class Solution { public: int robotSim(vector<int>& commands, vector<vector<int>>&am...

2019-01-31 09:43:51 569

原创 Leetcode 213. House Robber II

文章作者:Tyan 博客:noahsnail.com  |  CSDN  |  简书 1. Description 2. Solution class Solution { public: int rob(vector<int>& nums) { int n = nums.size(); if(n == 0)

2019-01-30 14:30:05 244

原创 Leetcode 198. House Robber

文章作者:Tyan 博客:noahsnail.com  |  CSDN  |  简书 1. Description 2. Solution class Solution { public: int rob(vector<int>& nums) { int n = nums.size(); if(n == 0)

2019-01-30 13:41:23 288

原创 Leetcode 337. House Robber III

文章作者:Tyan 博客:noahsnail.com  |  CSDN  |  简书 1. Description 2. Solution Version 1 /** * Definition for a binary tree node. * struct TreeNode { * int val; * TreeNode *l...

2019-01-29 16:29:47 335

原创 Leetcode 849. Maximize Distance to Closest Person

文章作者:Tyan 博客:noahsnail.com  |  CSDN  |  简书 1. Description 2. Solution Version 1 class Solution { public: int maxDistToClosest(vector<int&a

2019-01-07 18:30:54 456

ntdll.lib文件

ntdll.lib是编译lmdb数据库时需要用到的静态库,在编译caffe时有用

2016-01-29

lmdb代码——caffe

lmdb,搭建caffe必备,少的东西我都添加上了,能直接生成

2016-01-27

空空如也

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

TA关注的人

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