自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

ZXC的专栏

初识图像学习,写点心得体会。若有技术问题多多指教~~

  • 博客(26)
  • 资源 (1)
  • 收藏
  • 关注

原创 LeetCode 437. Path Sum III 题解 和固定的二叉树路径数目

计算和固定的二叉树路径数目

2016-10-27 16:17:34 753

原创 LeetCode 415. Add Strings题解 字符串加和

Given two non-negative numbers num1 and num2 represented as string, return the sum of num1 and num2.

2016-10-09 21:53:40 719

原创 Andrew机器学习笔记2:逻辑回归 logistic regression

Andrew机器学习笔记2 逻辑回归 logistic regression 正则化

2016-10-08 19:28:35 611

原创 Andrew机器学习笔记1:线性回归 linear regression

根据斯坦福大学Andrew NG的机器学习课程整理。线性回归 linear regression。

2016-09-22 16:11:41 987

原创 LeetCode 168. Excel Sheet Column Title

LeetCode 168. Excel Sheet Column Title 进制转换

2016-09-08 22:05:22 277

原创 LeetCode 201. Bitwise AND of Numbers Range

LeetCode 201. Bitwise AND of Numbers Range 位与

2016-09-01 20:20:48 228

原创 LeetCode 231. Power of Two ---- 2的幂

Power of Two,2的幂

2016-08-30 21:48:03 221

原创 LeetCode----223. Rectangle Area 2个矩形和

223. Rectangle Area 2个矩形和

2016-08-04 21:29:40 435

原创 LeetCode----344. Reverse String 字符串反转

字符串反转 344. Reverse String

2016-08-04 16:51:11 264

原创 LeetCode 292----Nim Game

nim game 两人游戏,4的倍数

2015-10-28 16:02:33 493 1

原创 LeetCode 242----Valid Anagram

LeetCode ,Valid Anagram,字符串回文构词法

2015-10-10 15:44:37 331

原创 LeetCode 283----Move Zeroes

LeetCode题解,Move Zeroes

2015-09-22 11:39:44 299

原创 LeetCode 235----Lowest Common Ancestor of a Binary Search

搜索二叉树,寻找最低祖先结点,LeetCode,Lowest Common Ancestor of a Binary Search

2015-09-18 15:08:40 242

原创 LeetCode 191----Number of 1 Bits

LeetCode,1的个数

2015-09-16 19:12:10 327

原创 LeetCode 226----Invert Binary Tree

二叉树,反转,递归,LeetCode

2015-09-16 16:33:12 290

原创 LeetCode 100-----Same Treed

二叉树,相同,递归,LeetCode,C++

2015-09-16 15:36:42 228

原创 LeetCode 104----Maximum Depth of Binary Tree

LeetCode,Maximum Depth of Binary Tree,二叉树深度,递归

2015-09-13 11:51:31 353

原创 LeetCode 237----Delete Node in a Linked List

LeetCode Delete Node in a Linked List 删除单链结点

2015-09-13 10:56:04 289

原创 LeetCode 258----Add Digits

Given a non-negative integer num, repeatedly add all its digits until the result has only one digit.For example:Given num = 38, the process is like: 3 + 8 = 11, 1 + 1 = 2. Since 2 has on

2015-09-11 09:41:14 310

原创 LeetCode 263----Ugly Number

Write a program to check whether a given number is an ugly number.Ugly numbers are positive numbers whose prime factors only include 2, 3, 5. For example, 6, 8 are ugly while 14 is not ugly si

2015-09-09 17:03:54 377

原创 LeetCode 278--First Bad Versionx先判断

You are a product manager and currently leading a team to develop a new product. Unfortunately, the latest version of your product fails the quality check. Since each version is developed based on the

2015-09-08 20:11:18 265

原创 LeetCode 13-----Roman to Integer

Given a roman numeral, convert it to an integer.Input is guaranteed to be within the range from 1 to 3999.相同的数字连写,所表示的数等于这些数字相加得到的数,如 Ⅲ=3;小的数字在大的数字的右边,所表示的数等于这些数字相加得到的数,如 Ⅷ=8、Ⅻ=12;小的数字(限

2015-09-08 09:45:10 337

原创 LeetCode58----Length of Last Word

LeetCode敲的第一题,小菜鸟一只,纪念一下~~Given a string s consists of upper/lower-case alphabets and empty space characters ' ', return the length of last word in the string.If the last word does not exist

2015-09-07 17:00:01 275

原创 C++学习——vector

vector是一种实体化对象,其内存为连续的。一维vector: vector<int>a(10,0) 声明向量a为int型,其初始长度为10,值为0二维vector: vector<vector<int>>a(m,vector(n)) 定义二维向量a,大小为m*n 基本函数: a.size() //获取向量中的元素个数 a

2015-08-23 16:47:56 369

原创 图像处理ORB特征学习笔记(1)

关键点:使用Harris角点检测寻找FAST关键点。初始时,选取低阀值,使获取的关键点数目大于N。再根据Harris测量,为关键点排序,选取测量值高的N个点做关键点。Harris角滤波器丢弃边缘。用质心法分析角方向(主方向)。

2015-03-16 13:12:07 1671

原创 vs2010的gsl配置

网上有很多配置的blog,

2014-11-13 16:43:42 891 1

libgslcblas.lib和libgsl.lib

gsl配置文件,libgslcblas.lib和libgsl.lib

2014-11-13

空空如也

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

TA关注的人

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