自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(81)
  • 资源 (40)
  • 收藏
  • 关注

原创 LeetCode:Valid Perfect Square

Valid Perfect SquareTotal Accepted: 1976 Total Submissions: 5317 Difficulty: MediumGiven a positive integer num, write a function which returns True if num is a perfect squ

2016-06-28 10:14:30 3150

原创 LeetCode:LRU Cache

LRU CacheTotal Accepted: 76226 Total Submissions: 481333 Difficulty: HardDesign and implement a data structure for Least Recently Used (LRU) cache. It should support the fo

2016-06-23 21:20:33 1736

原创 LeetCode:Lowest Common Ancestor of a Binary Tree

Lowest Common Ancestor of a Binary Tree My SubmissionsQuestionEditorial SolutionTotal Accepted: 46636 Total Submissions: 162074 Difficulty: MediumGiven a binary tree, find th

2016-06-20 17:28:12 1002

原创 LeetCode:Maximal Rectangle

Maximal RectangleTotal Accepted: 43628 Total Submissions: 183613 Difficulty: HardGiven a 2D binary matrix filled with 0's and 1's, find the largest rectangle containing all

2016-06-16 13:10:14 720

原创 LeetCode:Evaluate Reverse Polish Notation

Evaluate Reverse Polish NotationTotal Accepted: 66669 Total Submissions: 278014 Difficulty: MediumEvaluate the value of an arithmetic expression in Reverse Polish Notatio

2016-06-16 11:52:35 1605

原创 LeetCode:Count Numbers with Unique Digits

Count Numbers with Unique DigitsTotal Accepted:2092Total Submissions:4996Difficulty:MediumGiven anon-negativeinteger n, count all numbers with unique digits, x, wher

2016-06-16 11:32:37 2112

原创 LeetCode:Flatten Nested List Iterator

Flatten Nested List IteratorTotal Accepted: 7810 Total Submissions: 26799 Difficulty: MediumGiven a nested list of integers, implement an iterator to flatten it.Each elem

2016-06-16 10:51:57 1090

原创 LeetCode:Verify Preorder Serialization of a Binary Tree

Verify Preorder Serialization of a Binary TreeTotal Accepted: 14360 Total Submissions: 44550 Difficulty: MediumOne way to serialize a binary tree is to use pre-order traver

2016-06-16 09:57:32 1155

原创 LeetCode:String to Integer (atoi)

String to Integer (atoi) Total Accepted: 106573 Total Submissions: 784972 Difficulty: EasyImplement atoi to convert a string to an integer.Hint: Carefully consider all possible input cases. If you wan...

2016-06-15 22:54:20 1875

原创 LeetCode:Remove Invalid Parentheses

Remove Invalid ParenthesesTotal Accepted: 14168 Total Submissions: 43620 Difficulty: HardRemove the minimum number of invalid parentheses in order to make the input string valid.

2016-06-15 22:19:50 1946

原创 LeetCode:First Missing Positive

First Missing PositiveTotal Accepted: 66680 Total Submissions: 277290 Difficulty: HardGiven an unsorted integer array, find the first missing positive integer.For example

2016-06-15 21:43:19 1624

原创 LeetCode:Majority Element II

Majority Element II My SubmissionsQuestionEditorial SolutionTotal Accepted: 30176 Total Submissions: 115847 Difficulty: MediumGiven an integer array of size n, find all eleme

2016-06-15 21:05:30 1311

原创 LeetCode:Largest Rectangle in Histogram

Largest Rectangle in HistogramTotal Accepted: 61747 Total Submissions: 252559 Difficulty: HardGiven n non-negative integers representing the histogram's bar height where th

2016-06-15 20:27:53 1348

原创 LeetCode:4Sum

4SumTotal Accepted: 75786 Total Submissions: 314216 Difficulty: MediumGiven an array S of n integers, are there elements a, b, c, and d in S such that a + b + c + d = tar

2016-06-15 19:19:37 548

原创 LeetCode:3Sum

3SumTotal Accepted: 123026 Total Submissions: 643583 Difficulty: MediumGiven an array S of n integers, are there elements a, b, c in S such that a + b + c = 0? Find all

2016-06-15 17:44:29 639

原创 LeetCode:3Sum Closest

3Sum ClosestTotal Accepted: 80994 Total Submissions: 275223 Difficulty: MediumGiven an array S of n integers, find three integers in S such that the sum is closest to a giv

2016-06-15 17:18:47 591

原创 LeetCode:Jump Game II

Jump Game IITotal Accepted: 65982 Total Submissions: 259300 Difficulty: HardGiven an array of non-negative integers, you are initially positioned at the first index of the

2016-06-15 16:42:00 625

原创 LeetCode:Minimum Size Subarray Sum

Minimum Size Subarray SumTotal Accepted: 41802 Total Submissions: 153088 Difficulty: MediumGiven an array of n positive integers and a positive integer s, find the minimal

2016-06-15 16:03:57 715

原创 LeetCode:Factorial Trailing Zeroes

Factorial Trailing ZeroesTotal Accepted: 42370 Total Submissions: 139281 Difficulty: EasyGiven an integer n, return the number of trailing zeroes in n!.Note: Your solution should b

2016-06-15 12:17:17 1127

原创 LeetCode:Binary Tree Zigzag Level Order Traversal

Binary Tree Zigzag Level Order TraversalTotal Accepted: 63108 Total Submissions: 216632 Difficulty: MediumGiven a binary tree, return the zigzag level order traversal of it

2016-06-15 11:41:41 562

原创 LeetCode:Binary Tree Level Order Traversal II

Binary Tree Level Order Traversal IITotal Accepted: 84098 Total Submissions: 244151 Difficulty: EasyGiven a binary tree, return the bottom-up level order traversal of its n

2016-06-15 11:40:05 1195

原创 LeetCode:Flatten Binary Tree to Linked List

Flatten Binary Tree to Linked ListTotal Accepted: 85094 Total Submissions: 270845 Difficulty: MediumGiven a binary tree, flatten it to a linked list in-place.For example,

2016-06-14 22:26:21 1092

原创 LeetCode:Validate Binary Search Tree

Validate Binary Search TreeTotal Accepted: 96991 Total Submissions: 459613 Difficulty: MediumGiven a binary tree, determine if it is a valid binary search tree (BST).Assu

2016-06-14 22:07:39 1559

原创 LeetCode:Binary Tree Maximum Path Sum

Binary Tree Maximum Path SumTotal Accepted: 66664 Total Submissions: 282541 Difficulty: HardGiven a binary tree, find the maximum path sum.For this problem, a path is def

2016-06-14 21:52:24 1788

原创 LeetCode:Construct Binary Tree from Preorder and Inorder Traversal

Construct Binary Tree from Preorder and Inorder TraversalTotal Accepted: 66121 Total Submissions: 227515 Difficulty: MediumGiven preorder and inorder traversal of a tree, c

2016-06-14 21:31:01 1539

原创 LeetCode:Construct Binary Tree from Inorder and Postorder Traversal

Construct Binary Tree from Inorder and Postorder TraversalTotal Accepted: 57352 Total Submissions: 195355 Difficulty: MediumGiven inorder and postorder traversal of a tree,

2016-06-14 21:00:58 1437

原创 LeetCode:Binary Tree Paths

Binary Tree PathsTotal Accepted: 51384 Total Submissions: 175285 Difficulty: EasyGiven a binary tree, return all root-to-leaf paths.For example, given the following binar

2016-06-14 18:43:55 1293

原创 LeetCode:Path Sum II

Path Sum IITotal Accepted: 84038 Total Submissions: 293138 Difficulty: MediumGiven a binary tree and a sum, find all root-to-leaf paths where each path's sum equals the giv

2016-06-14 18:29:17 1285

原创 LeetCode:Longest Increasing Path in a Matrix

Longest Increasing Path in a MatrixTotal Accepted: 15060 Total Submissions: 46586 Difficulty: HardGiven an integer matrix, find the length of the longest increasing path.

2016-06-14 18:05:01 1026

原创 LeetCode:Burst Balloons

Burst BalloonsTotal Accepted: 10164 Total Submissions: 27045 Difficulty: HardGiven n balloons, indexed from 0 to n-1. Each balloon is painted with a number on it represen

2016-06-14 15:27:16 915

原创 LeetCode:Populating Next Right Pointers in Each Node II

Populating Next Right Pointers in Each Node IITotal Accepted: 63428 Total Submissions: 192670 Difficulty: HardFollow up for problem "Populating Next Right Pointers in Each Node".

2016-06-14 15:21:29 866

原创 LeetCode:Search for a Range

Search for a Range My SubmissionsQuestionEditorial SolutionTotal Accepted: 86572 Total Submissions: 294138 Difficulty: MediumGiven a sorted array of integers, find the starti

2016-06-13 21:38:24 2267

原创 LeetCode:Unique Paths II

Unique Paths IITotal Accepted: 68571 Total Submissions: 231545 Difficulty: MediumFollow up for "Unique Paths":Now consider if some obstacles are added to the grids. How m

2016-06-13 20:53:35 400

原创 Java源码之LinkedHashSet

Java源码之LinkedHashSet转载请注明:一、 LinkedHashSet概述LinkedHashSet是具有可预知迭代顺序的Set接口的哈希表和链接列表实现。此实现与HashSet的不同之处在于,后者维护着一个运行于所有条目的双重链接列表。此链接列表定义了迭代顺序,该迭代顺序可为插入顺序或是访问顺序。注意,此实现不是同步的。如果多个线程同时访问链

2016-06-12 15:39:28 922

原创 LeetCode:Bitwise AND of Numbers Range

Bitwise AND of Numbers RangeTotal Accepted: 35825 Total Submissions: 115763 Difficulty: MediumGiven a range [m, n] where 0 For example, given the range [5, 7], you should

2016-06-11 20:16:43 1839

原创 LeetCode:Trapping Rain Water

Trapping Rain WaterTotal Accepted: 68935 Total Submissions: 211305 Difficulty: HardGiven n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water ...

2016-06-11 15:51:29 1577

原创 LeetCode:Longest Consecutive Sequence

Longest Consecutive SequenceTotal Accepted: 67348 Total Submissions: 206214 Difficulty: HardGiven an unsorted array of integers, find the length of the longest consecutive

2016-06-11 15:08:27 747

原创 LeetCode:Remove Duplicates from Sorted Array II

Remove Duplicates from Sorted Array IITotal Accepted: 77330 Total Submissions: 233813 Difficulty: MediumFollow up for "Remove Duplicates":What if duplicates are allowed a

2016-06-11 14:46:39 1624

原创 LeetCode:Sum Root to Leaf Numbers

Sum Root to Leaf NumbersTotal Accepted: 78569 Total Submissions: 237646 Difficulty: MediumGiven a binary tree containing digits from 0-9 only, each root-to-leaf path coul

2016-06-11 14:29:24 1727

原创 LeetCode:Kth Largest Element in an Array

Kth Largest Element in an ArrayTotal Accepted:59659Total Submissions:175932Difficulty:MediumFind thekth largest element in an unsorted array. Note that it is the kth la

2016-06-11 14:20:31 1542

opencv人脸识别--detectMultiScale函数

opencv人脸识别--detectMultiScale函数

2015-12-30

opencv人脸识别--cvHaarDetectObjects函数

opencv人脸识别--cvHaarDetectObjects函数

2015-12-30

人脸识别--detectMultiScale函数使用

人脸识别--detectMultiScale函数

2015-12-30

OpenGL编程指南(第七版)-红宝书扫描版

OpenGL编程指南(第七版)-红宝书扫描版.pdf

2015-12-30

【OpenCV3版】《OpenCV3编程入门》书本配套源代码

【OpenCV3版】《OpenCV3编程入门》书本配套源代码

2015-12-28

【OpenCV2版】《OpenCV3编程入门》书本配套源代码

【OpenCV2版】《OpenCV3编程入门》毛星云著_书本配套源代码

2015-12-28

OpenCV3编程入门_毛星云编著_电子工业出版

OpenCV3编程入门_毛星云编著_电子工业出版.pdf

2015-12-28

Objective-C2.0程序设计(原书第2版).pdf

Objective-C2.0程序设计(原书第2版).pdf

2015-12-28

Python基础教程(第2版)

Python基础教程(第2版) Python基础

2015-12-28

WebGL编程指南 [KouichiMatsuda著;RodgerLea著;谢光磊][电子工业出版社][2014.06][470页]

WebGL编程指南 [KouichiMatsuda著;RodgerLea著;谢光磊][电子工业出版社][2014.06][470页]

2015-12-28

[可视化数据].张羽译.扫描版

[可视化数据] 张羽译 扫描版 pdf

2015-12-27

STL源码剖析简体中文完整版(清晰扫描带目录

STL源码剖析简体中文完整版(清晰扫描带目录

2015-12-27

OpenCV3编程入门_毛星云编著_电子工业出版(第2部分)(共2部分)

OpenCV3编程入门_毛星云编著_电子工业出版(第2部分)(共2部分)

2015-12-25

OpenCV3编程入门_毛星云编著_电子工业出版(第1部分)(共2部分)高清PDF

OpenCV3编程入门_毛星云编著_电子工业出版(第1部分)(共2部分)

2015-12-25

《2013年王道论坛计算机考研机试指南》

《2013年王道论坛计算机考研机试指南》_密码移除

2015-12-23

OpenCV3编程入门_毛星云编著_电子工业出版..._split_2

OpenCV3编程入门_毛星云编著_电子工业出版_split_2

2015-12-23

OpenCV3编程入门_毛星云编著_电子工业出版..._split_1

OpenCV3编程入门_毛星云编著_电子工业出版_split_1

2015-12-23

《OpenGL ES 2.0 开发向导》源码

本教程向您展示了如何创建一个简单的Android应用程序,该应用程序使用OpenGL ES 2.0 API来执行一些基本的图形操作。你将学习如何: - 使用GLSurfaceView和GLSurfaceView. renderer创建一个活动 - 创建并绘制图形对象 - 定义一个投影来校正屏幕的几何形状 - 定义摄像机视图 - 旋转图形对象 - 使图形触摸具有交互性

2018-12-28

Android Room with a View

Android Room with a View Android Jetpack 架构篇:带视图的Android Room

2018-10-30

Android 开发艺术探索高清完整版(电子版)

本书是一本Android进阶类书籍,采用理论、源码和实践相结合的方式来阐述高水准的Android应用开发要点。本书从三个方面来组织内容。 第一,介绍Android开发者不容易掌握的一些知识点; 第二,结合Android源代码和应用层开发过程,融会贯通,介绍一些比较深入的知识点; 第三,介绍一些核心技术和Android的性能优化思想。

2018-08-22

FFmpeg4Android:视频文件推流

FFmpeg4Android:视频文件推流到nginx服务器(源码) RTMP推流器(Streamer)的在流媒体系统中的作用可以用下图表示。首先将视频数据以RTMP的形式发送到流媒体服务器端(Server,比如FMS,Red5,Wowza等),然后客户端(一般为Flash Player)通过访问流媒体服务器就可以收看实时流了。 运行本程序之前需要先运行RTMP流媒体服务器,并在流媒体服务器上建立相应的Application。有关流媒体服务器的操作不在本文的论述范围内,在此不再详述。本程序运行后,即可通过RTMP客户端(例如 Flash Player, FFplay等等)收看推送的直播流。

2018-03-30

FFmpeg4Android:视频播放

【FFmpeg4Android:视频播放】包含视频jni层播放(原生播放)与java层播放。分别人提供不同的使用需求。

2018-02-11

《FFmpeg视、音频解码》源码+视频文件

Android与FFmpeg:音、视频文件解码Demo。 音频生成为pcm文件,视频生成为yuv文件。

2018-01-29

FFmpeg解码

该代码是基于雷霄骅《最简单的基于FFmpeg的移动端例子》在AS中的实现。

2018-01-02

《FFmpeg在Android端的使用》源码

FFmpeg在Android端的使用,ffmpeg库在android中的简单调用。

2017-12-26

《NDK在AS中使用》源码

NDK在AS中使用,包括.h文件生成,.c文件实现,.编译.so文件。

2017-12-26

spring-framework-3.0.0

spring3.0的jar包、参考文档

2016-03-16

数据挖掘导论【完整版】

数据挖掘导论 完整版 数据挖掘导论 完整版

2016-01-21

Java面试宝典【2014版】

Java面试宝典2014版 讲述java面试中经常被面试管问到的问题。讲解细致全面。

2016-01-21

opencv参考文档

官方opencv各版本的参考文档. txt

2016-01-06

程序员接单宝典_第3版_韦刃著

本书的作者是一个在外包行业奋战多年的资深程序员,经 过近十年的磨砺,作者从一个开始靠个人只身接单的码农,成 长为一个带领十几人的团队承接大型软件项目的领头人。在这 些年中,作者经历了被人骗包、被人甩单、被人拖欠尾款等等 各种磨练,从这些经验教训中总结出了一套行之有效的接单技 巧,并成功地承接了总价值达上千万的软件项目。为了给广大 的程序员朋友在接项目时提供一些指导,作者特写成此书,作 为献给程序员朋友们的一份礼物。

2016-01-05

《OpenCV3编程入门》【毛星云著】【完整版】

OpenCV3编程入门【毛星云著】【完整版】

2016-01-04

opencv人脸识别--detectMultiScale函数_源码

opencv人脸识别--detectMultiScale函数

2015-12-31

opencv人脸识别--cvHaarDetectObjects函数_源码

opencv人脸识别--cvHaarDetectObjects函数

2015-12-31

空空如也

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

TA关注的人

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