- 博客(154)
- 资源 (3)
- 收藏
- 关注
原创 【LeetCode & 剑指offer 刷题笔记】汇总(已完成)
前言 不知不觉就结束了自己的秋招之路,虽感觉有些艰辛但是收获很多。找工作那段时间做了很多学习笔记,这是数据结构与算法相关的一部分笔记,这一块除了复习相关教科书,还有就是刷leetcode和《剑指offer》了。这段时间稍微空闲些,打算把自己之前在印象笔记上做的笔记迁移到CSDN上(CSDN解析html源码的功能还没加上去,已经反馈了这个问题,我要再等等这个功能,免得要过多的二次编辑),供大家学...
2019-01-11 02:14:53 62245 24
原创 七种常见经典排序算法
功能:七种常见经典排序算法作者:wikiwen日期:2018年4月20日参考文章:http://yansu.org/2015/09/07/sort-algorithms.htmlhttps://zh.wikipedia.org/wiki/排序算法https://en.wikipedia.org/wiki/Quicksort分类:插入排序:直接插入排序、希尔排序交换排序:冒泡排序...
2019-04-08 20:43:04 632
原创 YOLOv2实现分析与改进思考
目标检测算法实现细节代码:https://github.com/experiencor/keras-yolo21 网络结构的构建输入维度: 416*416(yolo v2为全卷积网络,可以接受任意尺寸的图像输入)输出维度: 13*13*(5+80/20) 栅格数*anchor box个数*(5+类别数) 5中1个元素表示是目标的置信概率...
2019-03-27 19:58:53 1756
原创 基于深度学习的目标检测算法对比分析(RCNN、SPP、YOLO、SSD、FPN、RetinaNet)
目录(1)RCNN与SPP的比较(2)RCNN→ Fast RCNN→ Faster RCNN(3)YOLO与RCNN类方法比较(4) YOLO与SSD的比较(5)YOLO v1→YOLO v2→YOLO v3(6)FPN、RetinaNet、Mask R-CNN、YOLOv3FPN(2017_CVPR)RetinaNet(2017_ICCV)...
2019-03-27 19:35:05 9635
原创 图像处理基础知识整理
目录1常用的边缘检测算子比较Roberts 算子Sobel算子和Prewitt算子Canny算子Laplacian算子综合比较:2常用的插值检测算法3常用的特征提取方法4 常用的图像分割算法5 常用的目标检测算法6常用的图像特征、特征点提取以及匹配算法(1)特征(2) 特征点算法:(3)特征点匹配算法7常用的去噪方法(1...
2019-03-27 19:14:03 3862 4
原创 远心光学成像系统原理详解
目录1 预备知识1.1 光阑的概念1.2 孔径光阑、入射光瞳、出射光瞳1.3 主光线1.4 光学系统的景深1.5 远心光学系统2 远心镜头详解2.1 远心镜头分类2.2 远心镜头的特点2.2.1 放大倍率稳定性2.2.2 远心度(远心斜率)2.2.3 透视误差限制2.3 远心镜头优缺点参考资料1 预备知识1.1 光阑的概念如下图所...
2019-01-28 22:13:05 15224 6
原创 【LeetCode & 剑指offer刷题】熟悉OJ平台3:OJ编程实例
【LeetCode & 剑指offer刷题】熟悉OJ平台3:OJ编程实例 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...) OJ编程实例给定一棵二叉树的前序(根、左、右)和中序(左、根、右)的打印结果,输出此二叉树按层(从左往右)打印结果。例如一棵二叉树前序:1 2 4 5 3;中序:4 2 5...
2019-01-06 17:52:00 470
原创 【LeetCode & 剑指offer刷题】熟悉OJ平台2:如何处理输入问题
【LeetCode & 剑指offer刷题】熟悉OJ平台2:如何处理输入问题 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)笔试中的编程题一般用OJ平台(如牛客网),而这些平台绝大部分都会要求自己写输入部分(不同于leetcode),如果对输入部分不熟悉的话会浪费很多时间,所以这一部分需熟练掌握。输...
2019-01-06 17:46:00 3775
转载 【LeetCode & 剑指offer刷题】熟悉OJ平台1:OJ术语
【LeetCode & 剑指offer刷题】熟悉OJ平台1:OJ术语【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)本文转载自博客:https://blog.csdn.net/JNingWei/article/details/78425824博客内容如下: OJ术语: AC、WA、TLE、OLE、MLE、RE、PE、CE起因看到...
2019-01-06 17:37:00 3630
原创 【LeetCode & 剑指offer刷题】发散思维题9:Shuffle an Array
【LeetCode & 剑指offer刷题】发散思维题9:Shuffle an Array 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)Shuffle an ArrayShuffle a set of numbers without duplicates.Example:// Init...
2019-01-06 17:25:00 504
原创 【LeetCode & 剑指offer刷题】发散思维题8:Roman to Integer
【LeetCode & 剑指offer刷题】发散思维题8:Roman to Integer 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)Roman to IntegerRoman numerals are represented by seven different symbols: I, ...
2019-01-06 17:24:00 396
原创 【LeetCode & 剑指offer刷题】发散思维题7:Fizz Buzz
【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)Fizz BuzzWrite a program that outputs the string representation of numbers from 1 ton.But for multiples of three it should output “Fizz” in...
2019-01-06 17:24:00 153
原创 【LeetCode & 剑指offer刷题】发散思维题6:231. Power of Two(系列)
【LeetCode & 剑指offer刷题】发散思维题6:231. Power of Two(系列) 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)231. Power of TwoGiven an integer, write a function to determine if it is a ...
2019-01-06 17:23:00 462
原创 【LeetCode & 剑指offer刷题】发散思维题4:64 求1+2+…+n
【LeetCode & 剑指offer刷题】发散思维题4:64 求1+2+…+n 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)64 求1+2+...+n题目描述求1+2+3+...+n,要求不能使用乘除法、for、while、if、else、switch、case等关键字及条件判断语句(A?B...
2019-01-06 17:22:00 511
原创 【LeetCode & 剑指offer刷题】发散思维题5:65 不用加减乘除做加法
【LeetCode & 剑指offer刷题】发散思维题5:65 不用加减乘除做加法【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)65 不用加减乘除做加法题目描述写一个函数,求两个整数之和,要求在函数体内不得使用+、-、*、/四则运算符号。 /*用三步走的方式计算二进制值相加: 5-101,7-111第一步:相加各位的值,不...
2019-01-06 17:22:00 541
原创 【LeetCode & 剑指offer刷题】发散思维题3:62 圆圈中最后剩下的数字(约瑟夫环问题)...
【LeetCode & 剑指offer刷题】发散思维题3:62 圆圈中最后剩下的数字(约瑟夫环问题) 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)62 圆圈中最后剩下的数字(约瑟夫环问题) 题目描述每年六一儿童节,牛客都会准备一些小礼物去看望孤儿院的小朋友,今年亦是如此。HF作为牛客的资深元...
2019-01-06 17:21:00 786
原创 【LeetCode & 剑指offer刷题】发散思维题1:17 打印从1到最大的n位数
【LeetCode & 剑指offer刷题】发散思维题1:17 打印从1到最大的n位数 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)17 打印从1到最大的n位数 题目:输入数字n,按顺序打印出从1最大的n位十进制数。比如输入3,则打印出1、2、3一直到最大的3位数即999. 解题思路:(1...
2019-01-06 17:20:00 1172
原创 【LeetCode & 剑指offer刷题】发散思维题2:43 n个骰子的点数
【LeetCode & 剑指offer刷题】发散思维题2:43 n个骰子的点数 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)43 n个骰子的点数题目:把n个骰子仍在地上,所有骰子朝上一面的点数之和为s。输入n,打印出s的所有可能的值出现的概率。思路:s可能出现的值的范围为:n--6*n1...
2019-01-06 17:20:00 1064
原创 【LeetCode & 剑指offer刷题】分治法题3:Sqrt(x)
【LeetCode & 剑指offer刷题】分治法题3:Sqrt(x) 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...) Sqrt(x)Implement int sqrt(int x).Compute and return the square root of x, where x is g...
2019-01-06 17:18:00 487
原创 【LeetCode & 剑指offer刷题】分治法题2:42 连续子数组的最大和(53. Maximum Subarray)...
【LeetCode & 剑指offer刷题】分治法题2:42 连续子数组的最大和(53. Maximum Subarray) 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)53. Maximum SubarrayGiven an integer array nums, find the con...
2019-01-06 17:17:00 479
原创 【LeetCode & 剑指offer刷题】分治法题1:16 数值的整数次方(50. Pow(x, n))
【LeetCode & 剑指offer刷题】分治法题1:16 数值的整数次方(50. Pow(x, n)) 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)50. Pow(x, n)Implement pow(x, n), which calculates x raised to the power...
2019-01-06 17:17:00 785
原创 【LeetCode & 剑指offer刷题】回溯法与暴力枚举法题6:Number of Islands
【LeetCode & 剑指offer刷题】回溯法与暴力枚举法题6:Number of Islands 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)Number of IslandsGiven a 2d grid map of '1's (land) and '0's (water), co...
2019-01-06 17:14:00 445
原创 【LeetCode & 剑指offer刷题】回溯法与暴力枚举法题7:Subsets(系列)
【LeetCode & 剑指offer刷题】回溯法与暴力枚举法题7:Subsets(系列) 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)SubsetsGiven a set of distinct integers, nums, return all possible subsets (th...
2019-01-06 17:14:00 488
原创 【LeetCode & 剑指offer刷题】回溯法与暴力枚举法题5:Letter Combinations of a Phone Number...
【LeetCode & 剑指offer刷题】回溯法与暴力枚举法题5:Letter Combinations of a Phone Number 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)Letter Combinations of a Phone NumberGiven a string ...
2019-01-06 17:13:00 407
原创 【LeetCode & 剑指offer刷题】回溯法与暴力枚举法题4:Generate Parentheses
【LeetCode & 剑指offer刷题】回溯法与暴力枚举法题4:Generate Parentheses 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)Generate ParenthesesGiven n pairs of parentheses, write a function to...
2019-01-06 17:12:00 398
原创 【LeetCode & 剑指offer刷题】回溯法与暴力枚举法题3:13 机器人的运动范围
【LeetCode & 剑指offer刷题】回溯法与暴力枚举法题3:13 机器人的运动范围 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)13 机器人的运动范围题目描述地上有一个m行和n列的方格。一个机器人从坐标0,0的格子开始移动,每一次只能向左,右,上,下四个方向移动一格,但是不能进入行坐标...
2019-01-06 17:12:00 605
原创 【LeetCode & 剑指offer刷题】回溯法与暴力枚举法题2:12 矩阵中的字符串查找(79. Word Search 系列)...
【LeetCode & 剑指offer刷题】回溯法与暴力枚举法题2:12 矩阵中的字符串查找(79. Word Search 系列) 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)12 矩阵中的字符串查找(79. Word Search 系列)Word SearchGiven a 2D bo...
2019-01-06 17:11:00 583
原创 【LeetCode & 剑指offer刷题】回溯法与暴力枚举法题1:排列与组合
【LeetCode & 剑指offer刷题】回溯法与暴力枚举法题1:排列与组合 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)排列与组合说明:排列组合方法很多,不限于文中的这些方法,可以在网上多看些解法,选择几种自己比较欣赏的解法。1 Permutations IGiven a collecti...
2019-01-06 17:06:00 839
原创 【LeetCode & 剑指offer刷题】动态规划与贪婪法题16:背包问题总结
【LeetCode & 剑指offer刷题】动态规划与贪婪法题16:背包问题总结 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)背包问题总结背包问题 背包问题 (Knapsack problem x ) 有很多种版本,常见的是以下三种:0-1 背包问题 (0-1 knapsack pro...
2019-01-06 16:56:00 5630 2
原创 【LeetCode & 剑指offer刷题】动态规划与贪婪法题15:Word Break(系列)
【LeetCode & 剑指offer刷题】动态规划与贪婪法题15:Word Break(系列) 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)Word Break(系列)Word BreakGiven a non-empty string s and a dictionary wordDi...
2019-01-06 16:55:00 520
原创 【LeetCode & 剑指offer刷题】动态规划与贪婪法题14:Burst Balloons
【LeetCode & 剑指offer刷题】动态规划与贪婪法题14:Burst Balloons 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)Burst BalloonsGiven n balloons, indexed from 0 to n-1. Each balloon is pain...
2019-01-06 16:54:00 412
原创 【LeetCode & 剑指offer刷题】动态规划与贪婪法题13:Coin Change(系列)
【LeetCode & 剑指offer刷题】动态规划与贪婪法题13:Coin Change(系列) 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)Coin Change(系列)Coin ChangeYou are given coins of different denominations ...
2019-01-06 16:53:00 660
原创 【LeetCode & 剑指offer刷题】动态规划与贪婪法题12:Jump Game(系列)
【LeetCode & 剑指offer刷题】动态规划与贪婪法题12:Jump Game(系列) 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)Jump Game(系列)Jump GameGiven an array of non-negative integers, you are init...
2019-01-06 16:52:00 730
原创 【LeetCode & 剑指offer刷题】动态规划与贪婪法题11:121. Best Time to Buy and Sell Stock(系列)...
【LeetCode & 剑指offer刷题】动态规划与贪婪法题11:121. Best Time to Buy and Sell Stock(系列) 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...) Best Time to Buy and Sell Stock(系列)121. Best Time ...
2019-01-06 16:51:00 619
原创 【LeetCode & 剑指offer刷题】动态规划与贪婪法题10:Longest Increasing Subsequence
【LeetCode & 剑指offer刷题】动态规划与贪婪法题10:Longest Increasing Subsequence 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)Longest Increasing SubsequenceGiven an unsorted array of in...
2019-01-06 16:50:00 539
原创 【LeetCode & 剑指offer刷题】动态规划与贪婪法题9:Unique Paths(系列)
【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)Unique Paths(系列)Unique PathsA robot is located at the top-left corner of amxngrid (marked 'Start' in the diagram below).The robot can ...
2019-01-06 16:47:00 129
原创 【LeetCode & 剑指offer刷题】动态规划与贪婪法题8:House Robber(系列)
【LeetCode & 剑指offer刷题】动态规划与贪婪法题8:House Robber(系列) 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)House Robber(系列) House RobberYou are a professional robber planning to r...
2019-01-06 16:46:00 692
原创 【LeetCode & 剑指offer刷题】动态规划与贪婪法题7:47:礼物的最大价值
【LeetCode & 剑指offer刷题】动态规划与贪婪法题7:47:礼物的最大价值 【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)47:礼物的最大价值题目:在一个m*n的棋盘的每一格都放有一个礼物,每个礼物都有一定的价值(价值大于0)。你可以从棋盘的左上角开始拿格子里的礼物,并每次向左或者向...
2019-01-06 16:45:00 1359
原创 【LeetCode & 剑指offer刷题】动态规划与贪婪法题6:《算法导论》动态规划、贪婪法与分治法ppt...
【LeetCode & 剑指offer刷题】动态规划与贪婪法题6:《算法导论》动态规划、贪婪法与分治法ppt【LeetCode & 剑指offer 刷题笔记】目录(持续更新中...)《算法导论》动态规划、贪婪法与分治法ppt对于学算法的同学,推荐经典书籍《算法导论》,这本书还有配套的视频(见参考链接),是MIT的教授主讲的,听完特别有收获,下面为博主在学习算法设计技巧时...
2019-01-06 16:37:00 1056
分块阈值matlab代码(光照不均匀图像分割技巧)
2019-01-30
《算法导论》MIT公开课动态规划、贪婪法、分治法ppt
2019-01-09
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人