自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(38)
  • 资源 (42)
  • 收藏
  • 关注

原创 LeetCode617. Merge Two Binary Trees(合并二叉树)

合并二叉树

2018-12-31 14:45:21 180

翻译 LeetCode581. Shortest Unsorted Continuous Subarray(最短无序连续子数组)

最短无序连续子数组

2018-12-30 23:22:48 230

原创 LeetCode560. Subarray Sum Equals K(和为K的子数组)

和为K的子数组

2018-12-28 22:58:06 202 3

原创 LeetCode416. Partition Equal Subset Sum(分割等和子集)

分割等和子集

2018-12-27 23:14:09 215

原创 LeetCode538. Convert BST to Greater Tree

538. Convert BST to Greater TreeGiven a Binary Search Tree (BST), convert it to a Greater Tree such that every key of the original BST is changed to the original key plus sum of all keys greater tha...

2018-12-26 23:00:08 103

原创 LeetCode461. Hamming Distance

汉明距离

2018-12-26 22:46:55 197

原创 LeetCode438. Find All Anagrams in a String

438. Find All Anagrams in a StringGiven a string s and a non-empty string p, find all the start indices of p's anagrams in s.Strings consists of lowercase English letters only and the length of bo...

2018-12-26 22:36:18 190

转载 leetcode substring search problem solve template

https://leetcode.com/problems/find-all-anagrams-in-a-string/discuss/92007/Sliding-Window-algorithm-template-to-solve-all-the-Leetcode-substring-search-problem.Among all leetcode questions, I find th...

2018-12-26 14:12:14 315

原创 LeetCode437. Path Sum III(二叉树路径总和)

二叉树路径总和

2018-12-25 22:16:14 246

原创 LeetCode347. Top K Frequent Elements

前K个高频元素

2018-12-23 22:22:00 151

原创 LeetCode337. House Robber III

337. House Robber IIIThe thief has found himself a new place for his thievery again. There is only one entrance to this area, called the "root." Besides the root, each house has one and only one par...

2018-12-23 20:24:15 224

原创 LeetCode338. Counting Bits

比特位计数

2018-12-23 19:33:18 234 2

原创 VS2015编译opencv时cap_msmf出错

问题VS2015编译opencv的videoio模块时cap_msmf部分出错。提示_ComPtr<ID3D11Multithread> D3DDevMT中ID3D11Multithread未声明的标识符,非法的间接寻址等错误。解决方法取消勾选【WITH_MSMF】后重新Configure,Generate。...

2018-12-23 10:06:21 1482

原创 LeetCode283. Move Zeroes

移动0至末尾

2018-12-20 22:01:20 145

原创 LeetCode240. Search a 2D Matrix II

有序二维数组搜索

2018-12-19 22:18:49 166

原创 234. Palindrome Linked List

234.Palindrome Linked ListGiven a singly linked list, determine if it is a palindrome.Example 1:Input: 1->2Output: falseExample 2:Input: 1->2->2->1Output: true判断链表中的值是否构成回...

2018-12-19 21:06:17 119

原创 LeetCode221. Maximal Square

全为1的最大正方形

2018-12-19 19:59:15 140

原创 LeetCode215. Kth Largest Element in an Array

第K大的数

2018-12-17 21:38:08 177

原创 LeetCode169. Majority Element

169. Majority ElementGiven an array of size n, find the majority element. The majority element is the element that appears more than ⌊ n/2 ⌋ times.You may assume that the array is non-empty and th...

2018-12-15 11:37:41 125

原创 LeetCode152. Maximum Product Subarray

最大子数组乘积

2018-12-14 22:15:13 153

原创 LeetCode104. Maximum Depth of Binary Tree

二叉树的最大深度

2018-12-14 14:33:50 77

原创 LeetCode102. Binary Tree Level Order Traversal

二叉树层序遍历

2018-12-14 12:57:08 122

原创 LeetCode101. Symmetric Tree

对称树

2018-12-13 21:47:32 125

原创 LeetCode98. Validate Binary Search Tree

判断是否为排序二叉树

2018-12-13 21:02:18 155

原创 LeetCode94. Binary Tree Inorder Traversal

二叉树中序遍历

2018-12-13 20:04:09 165

原创 LeetCode76. Minimum Window Substring(最小覆盖子串)

最小覆盖子串

2018-12-11 21:41:05 215

原创 LeetCode75. Sort Colors

0 1 2 数排序

2018-12-11 21:36:12 153

原创 LeetCode70. Climbing Stairs(爬楼梯)

爬楼梯

2018-12-11 21:31:45 148

原创 LeetCode49. Group Anagrams

49. Group AnagramsGiven an array of strings, group anagrams together.Example:Input: ["eat", "tea", "tan", "ate", "nat", "bat"],Output:[ ["ate","eat","tea"]

2018-12-10 13:04:30 137

转载 A general approach to backtracking questions in Java (Subsets, Permutations, Combination Sum)

一些问题回溯法的解决方法。https://leetcode.com/problems/combination-sum/discuss/16502/A-general-approach-to-backtracking-questions-in-Java-(Subsets-Permutations-Combination-Sum-Palindrome-Partitioning)This str...

2018-12-09 18:49:18 243

原创 LeetCode34. Find First and Last Position of Element in Sorted Array

34. Find First and Last Position of Element in Sorted ArrayGiven an array of integers nums sorted in ascending order, find the starting and ending position of a given target value.Your algorithm's...

2018-12-09 16:07:38 147

原创 LeetCode33. Search in Rotated Sorted Array

33. Search in Rotated Sorted ArraySuppose an array sorted in ascending order is rotated at some pivot unknown to you beforehand.(i.e., [0,1,2,4,5,6,7] might become [4,5,6,7,0,1,2]).You are given...

2018-12-09 14:52:15 146

原创 LeetCode31. Next Permutation

31. Next PermutationImplement next permutation, which rearranges numbers into the lexicographically next greater permutation of numbers.If such arrangement is not possible, it must rearrange it as...

2018-12-07 23:09:42 181

原创 LeetCode22. Generate Parentheses(括号生成)

22.Generate Parentheses[Medium]Givennpairs of parentheses, write a function to generate all combinations of well-formed parentheses.For example, givenn= 3, a solution set is:[ "((()))"...

2018-12-07 15:14:41 198

原创 LeetCode19. Remove Nth Node From End of List

19. Remove Nth Node From End of ListGiven a linked list, remove the n-th node from the end of list and return its head.Example:Given linked list: 1-&gt;2-&gt;3-&gt;4-&gt;5, and n = 2.After re...

2018-12-06 13:07:28 145

转载 Backtracking回溯法

https://segmentfault.com/a/1190000006121957回溯是啥用爬山来比喻回溯,好比从山脚下找一条爬上山顶的路,起初有好几条道可走,当选择一条道走到某处时,又有几条岔道可供选择,只能选择其中一条道往前走,若能这样子顺利爬上山顶则罢了,否则走到一条绝路上时,只好返回到最近的一个路口,重新选择另一条没走过的道往前走。如果该路口的所有路都走不通,只得从该路口继续回...

2018-12-05 19:32:45 1274

原创 LeetCode17. Letter Combinations of a Phone Number

17.Letter Combinations of a Phone NumberGiven a string containing digits from2-9inclusive, return all possible letter combinations that the number could represent.A mapping of digit to letters ...

2018-12-05 17:10:52 159

原创 LeetCode4. Median of Two Sorted Arrays

4.Median of Two Sorted ArraysThere are two sorted arraysnums1andnums2of size m and n respectively.Find the median of the two sorted arrays. The overall run time complexity should be O(log (m+...

2018-12-01 21:50:46 125

pytorch_1.6.0_docs_tutorials.rar

pytorch 1.6.0 Docs和Tutorial。Html格式,可离线查看,起始网页index.html。

2020-08-01

opencv_contrib345_x64_vc12_vc14_vc15

opencv_contrib345_x64_vc12_vc14_vc15。包含opencv_contrib-3.4.5。Debug,Release。x64。因为文件大小的约束,x86和x64分开上传。

2018-12-23

irfanView4.5.2

irfanView 4.5.2 x64 看图软件。https://www.irfanview.com。

2018-12-21

pytorch-1.0.0 Docs Tutorials

PyTorch-1.0.0 Docs and Tutorials. Html格式,可离线查看.

2018-12-08

OpenCV_contrib-4.0.0_g++5.4.0

OpenCV4.0.0包含contrib模块,so文件.Ubuntu16.04, g++5.4.0.

2018-11-24

OpenCV343_contrib_g++5.4.0

OpenCV343包含contrib模块,so文件.Ubuntu16.04, g++5.4.0.

2018-11-23

opencv_contrib-4.0.0-mingw53_32

opencv_contrib-4.0.0-mingw53_32。包含Debug/Release,x86。WITH_QT。

2018-11-20

opencv400_vc14_vc15_x86_x64

opencv4.0.0 包含opencv_contrib-4.0.0。vc14、vc15;x86、x64;Debug、Release。

2018-11-19

opencv343-mingw53_32

opencv343-mingw53_32。可在QT creator中使用。包含opencv_contrib模块。Debug/Release。

2018-10-29

mingw32-opencv2413

mingw32-opencv2413 Qt

2018-10-28

opencv343_vc10_x86_64

opencv343.rar包含vs2010下x86和x64的Release和Debug的opencv343版本。其中未编译opencv_videoio343模块

2018-10-13

opencv400-alpha

opencv4.00-alpha,opencv_contrib-4.0.0-alpha编译。包含vc12:x86 ,x64 。vc14:x86,x64。vc15:x86。 release debug。

2018-10-13

PyTorch 0.4.1 HTML Tutorials

PyTorch 0.4.1 HTML Tutorials。起始主页为index.html。

2018-10-03

tensorflow 1.11.0 api docs

tensorflow 1.11.0 api docs。 markdown, ipynb 。

2018-10-03

IrfanView4.51

IRFANVIEW GRAPHIC VIEWER Fast and compact ( just 3 MB ) Freeware for non-commercial use Supports Windows XP, Vista, 7, 8, and 10 32 and 64 bit version Multi language support Unicode support Designed to be simple but powerful。 https://www.irfanview.com/

2018-09-19

LabelImg Linux 1.4.3

LabelImg Linux https://github.com/tzutalin/labelImg

2018-09-13

OpenSceneGraph(OSG)

OpenSceneGraph-OpenSceneGraph-3.0.0 VS2010 x86 Debug/Release

2018-09-04

tensorflow 1.10.0 docs

TensorFlow documentation 1.10.0 的帮助文档,markdown文件。

2018-08-22

tensorflow1.7.1_cpu_x64_vc14_release dll

tensorflow1.7.1 C++版本dll。VS2015,x64,release,cpu版本。压缩包内有个配置头文件和库目录的.props示例文件。

2018-07-20

opencv342_vc10_vc12_x86_64

opencv342_vc10_vc12_x86_64.zip包含vs2010和vs2013下x86和x64的Release和Debug的opencv342版本。其中VS2010中未编译opencv_videoio342模块。

2018-07-20

pytorch_1.9.0_docs_tutorials.zip

pytorch 1.9.0 Docs和Tutorial。Html格式,可离线查看,起始网页index.html。积分已设置为0。

2021-06-19

pytorch_1.8.1_docs_tutorials.zip

pytorch 1.8.1 Docs和Tutorial。Html格式,可离线查看,起始网页index.html

2021-03-28

pytorch_1.7.0_docs_tutorials.zip

pytorch 1.7.0 Docs和Tutorial。Html格式,可离线查看,起始网页index.html。

2020-10-28

ChromeStandaloneSetup64_83.0.4103.116.exe

ChromeStandaloneSetup64_83.0.4103.116.exe 谷歌浏览器离线安装包

2020-07-12

gdal202.dll/gdal300.dll

opencv420_contrib_vc14_vc15_vc16_x64.rar (https://download.csdn.net/download/grllery/12050531) 缺失的dll。

2020-01-14

chrome-amd64_79.0.3945.117.deb

https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb(ubuntu).

2020-01-13

opencv420_contrib_vc14_vc15_vc16_x64.rar

opencv420 包含contrib部分,x64,debug/release。VS2015/VS2017/VS2019。由于编译时选择了"WITH_GDAL"需要额外的gdal202.dll/gdal300.dll,缺失的库见 https://download.csdn.net/download/grllery/12102036

2019-12-25

pytorch_1.3.0_docs_tutorials.zip

pytorch 1.3.0 Docs和Tutorial。Html格式,可离线查看

2019-10-14

opencv411_contrib_vc14_x86_x64.zip

opencv411 vc14包含contrib部分,x86/x64, debug/release

2019-10-09

opencv411_vc15_contrib.zip

opencv411 vc15包含contrib部分,x86/x64, debug/release。

2019-09-29

pytorch1.2.0_docs_tutorial.zip

pytorch 1.2.0 Docs和Tutorial。Html格式,可离线查看。

2019-09-29

opencv410_vc14_x86_x64.rar

opencv410 VS2015 x86 x64 包含opencv_contrib-4.1.0。

2019-05-31

pytorch-1.1.0 Docs Tutorials

PyTorch-1.1.0 Docs and Tutorials. Html格式,可离线查看,包括相应的API。

2019-05-03

opencv410_g++7.3.0

OpenCV4.1.0,包含contrib模块。Ubuntu18.04下g++7.3.0编译。

2019-04-30

opencv410_vc15_x86_x64

opencv410_vc15_x86_x64,VS2017, Debug/Release,包含contrib模块。

2019-04-28

chrome_73.0.3683.103.deb

https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb(ubuntu).

2019-04-12

ChromeStandaloneSetup64_72.0.3626.109.exe

ChromeStandaloneSetup64_72.0.3626.109.exe。可离线安装。

2019-02-15

OpenCV_contrib-4.0.1_g++5.4.0

OpenCV4.0.1包含contrib模块,so文件.Ubuntu16.04, g++5.4.0.

2019-01-08

opencv_contrib401_x86_x64_vc14_vc15

opencv_contrib401_x86_x64_vc14_vc15。包含opencv_contrib-4.0.1。Debug, Release.

2018-12-25

opencv_contrib345_x86_vc12_vc14_vc15

opencv_contrib345_x86_vc12_vc14_vc15。包含opencv_contrib-3.4.5。Debug,Release。x86。因为文件大小的约束,x86和x64分开上传。

2018-12-23

空空如也

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

TA关注的人

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