自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

ChuanjieZhu

第一点:通俗易懂;第二点:准确深刻;第三点:贯彻以上两点。DJI大疆创新,招聘官网https://we.dji.com/,需要内推的同学请联系chuanjiezhu@qq.com。

  • 博客(10)
  • 资源 (6)
  • 收藏
  • 关注

原创 Jump Game(LeetCode)

Given an array of non-negative integers, you are initially positioned at the first index of the array.Each element in the array represents your maximum jump length at that position.Determine if you ar...

2018-07-08 16:13:10 184

原创 Combination Sum IV(LeetCode)

Given an integer array with all positive numbers and no duplicates, find the number of possible combinations that add up to a positive integer target.Example:nums = [1, 2, 3] target = 4 The possible ...

2018-07-08 15:05:49 230

原创 Combination Sum III(LeetCode)

Find all possible combinations of k numbers that add up to a number n, given that only numbers from 1 to 9 can be used and each combination should be a unique set of numbers.Note:All numbers will be p...

2018-07-08 10:36:53 177

原创 Combination Sum II(LetCode)

Given a collection of candidate numbers (candidates) and a target number (target), find all unique combinations in candidates where the candidate numbers sums to target.Each number in candidates may o...

2018-07-08 09:55:15 131

原创 Permutation Sequence(LeetCode)

The set [1,2,3,...,n] contains a total of n! unique permutations.By listing and labeling all of the permutations in order, we get the following sequence for n = 3:"123""132""213""231""312""321"Giv

2018-07-07 22:01:34 138

原创 Permutations II(LeetCode)

Given a collection of numbers that might contain duplicates, return all possible unique permutations.Example:Input: [1,1,2] Output: [ [1,1,2], [1,2,1], [2,1,1] ]这一题和上一题类似,就是数组里有重复的元素。思路:递归+深度优先搜...

2018-07-07 17:40:11 220

原创 Permutations(LeetCode)

Given a collection of distinct integers, return all possible permutations.Example:Input: [1,2,3] Output: [ [1,2,3], [1,3,2], [2,1,3], [2,3,1], [3,1,2], [3,2,1] ]求全排列。思路:递归+深度优先搜索因为排列要使用所有数...

2018-07-07 17:19:08 512

原创 Combination Sum(Leetcode)

Given a set of candidate numbers (candidates) (without duplicates) and a target number (target), find all unique combinations in candidates where the candidate numbers sums to target.The same repeated...

2018-07-07 15:47:38 199

原创 字符串反转,c和c++实现

区别在于用char* 还是stringc语言:char* reverseString(char* s) { int len = strlen(s); int i = 0; char ch; while (i < len / 2) { ch = *(s + i); *(s + i) = *(s + len - 1 - i); *(s + len - 1 - i) = ch;...

2018-07-07 12:10:25 303

原创 Combinations(LeetCode)

Given two integers n and k, return all possible combinations of k numbers out of 1 ... n.Example:Input: n = 4, k = 2 Output: [ [2,4], [3,4], [2,3], [1,2], [1,3], [1,4], ]求组合数。思路:递归+深度优先搜索(...

2018-07-06 22:33:33 231

多波段融合/拉普拉斯金字塔融合OpenCV_C++代码

多波段融合/拉普拉斯金字塔融合OpenCV_C++代码

2019-04-26

异步FIFO控制器的verilog实现

数字设计中经常设计到跨时钟域同步的问题,其中最为广泛采用的方法就是异步fifo实现多数据同步,文档里提供了一种实现方法。

2018-09-21

WaveletTutorial原文及其翻译

一个很经典的小波变换的教程,包括英文原版和中文翻译

2018-05-22

SIFT算法的matlab实现

sift算法由Lowe教授提出,在图像匹配领域有着广泛的应用,本资源包含了sift算法的所有实现,包括尺度金字塔生成,极值点检测,主方向分配,描述子生成,分模块编写,并且是可视化的。

2017-12-04

5/3小波的分解与重构(Matlab)

JP2K采用的一种图片压缩方式 --5/3小波,可用于图片压缩,资源内包括分解和重构的代码。

2017-11-23

Servlet API

Servlet API文档

2017-06-24

空空如也

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

TA关注的人

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