E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
mycode
Leetcode - Find Leaves of Binary Tree
Mycode
:/***Definitionforabinarytreenode.
Richardo92
·
2020-07-02 08:31
Leetcode - Integer Break
Mycode
:publicclassSolution{publicintintegerBreak(intn){if(n<=0){return0;}int[]dp=newint[n+1];dp[1]=1;
Richardo92
·
2020-07-02 01:35
Leetcode - Path Sum
Mycode
:/***Definitionforabinarytreenode.
Richardo92
·
2020-07-01 19:37
Leetcode - Balanced Binary Tree
Mycode
:/***Definitionforabinarytreenode.
Richardo92
·
2020-06-30 17:59
mac查看端口占用情况及杀死进程
比如我的9999端口被占用,可以使用终端命令sudolsof-i:9999ubuntu@Master:/usr/local/spark/
mycode
/streaming$sudolsof-i:9999COMMANDPIDUSERFDTYPEDEVICESIZE
棉花糖do
·
2020-06-30 10:41
Leetcode - Shortest Word Distance III
Mycode
:publicclassSolution{publicintshortestWordDistance(String[]words,Stringword1,Stringword2){inti1
Richardo92
·
2020-06-30 07:49
Leetcode - Binary Tree Vertical Order Traversal
Mycode
:/***Definitionforabinarytreenode.
Richardo92
·
2020-06-30 05:32
Leetcode - Bulls and Cows
Mycode
:publicclassSolution{publicStringgetHint(Stringsecret,Stringguess){if(secret==null||guess==null
Richardo92
·
2020-06-30 00:01
Leetcode - Palindrome Pairs
Mycode
:importjava.util.ArrayList;importjava.util.HashMap;importjava.util.List;importjava.util.Map;publicclassSolution
Richardo92
·
2020-06-29 15:20
RetinaNet模型在DDSM数据集的应用问题(2)
github的使用研究图片的底层,LJPEG是否可以送入RetinaNet读数据–可能不可以github1.我准备把每天的进展和代码(retinaNet在服务器中的
myCode
提交上去)2.不过真的很麻烦我不确定是否适用了
我要发Paper
·
2020-06-29 05:50
实验
Leetcode - Add Strings
Mycode
:publicclassSolution{publicStringaddStrings(Stringnum1,Stringnum2){StringBuildersb=newStringBuilder
Richardo92
·
2020-06-28 21:35
Leetcode - Sliding Window Maximum
Mycode
:publicclassSolution{publicint[]maxSlidingWindow(int[]nums,intk){if(nums==null||nums.length==0)
Richardo92
·
2020-06-27 14:02
第三章 Perl语言(五)-包、引用、复杂数据
使用package来声明一个包和名字空间(创建了包也就创建了名字空间):packageMyCode;our@boxes;subadd_box{...}声明之后,接下来所有定义的变量和函数都将处在
MyCode
可以没名字吗
·
2020-06-27 12:56
Leetcode - Sort List
Mycode
:/***Definitionforsingly-linkedlist.
Richardo92
·
2020-06-27 06:51
Leetcode - Minimum Height Trees
Mycode
:publicclassSolution{privateintV;privateList>adj;publicListfindMinHeightTrees(intn,int[][]edges
Richardo92
·
2020-06-27 03:58
python+opencv 获取图片中指定颜色的部分
HSV色彩空间通过比照HSV的参考表,进行获取要提取颜色的相应范围使用inRange函数进行提取使用imShow显示importcv2importnumpyasnpsrc=cv2.imread("D:\\
myCode
飞天土豆
·
2020-06-25 18:00
python
opencv
Leetcode - Climbing Stairs
Mycode
:publicclassSolution{publicintclimbStairs(intn){if(n<=0)return0;int[]dp=newint[n+1];dp[0]=1;dp[
Richardo92
·
2020-06-25 05:07
OpenCV检测图像中的长方形画布或纸张并提取图像内容
转自:知乎,利用OpenCV检测图像中的长方形画布或纸张并提取图像内容
MyCode
:#include#include#include#include#include#include#includeusingnamespacestd
DXT00
·
2020-06-25 05:35
opencv
Leetcode - Longest Palindrome
Mycode
:publicclassSolution{publicintlongestPalindrome(Strings){if(s==null||s.length()==0){return0;}intcounter
Richardo92
·
2020-06-25 00:13
VSCode中使用GitHub
例如:
mycode
4.
mycode
既是VSCode的代码工作文件夹又应该是Git的本地仓库。在命令行方式下进入
mycode
,输入gitinitgitinit5.添加用户名和邮箱。该用户名和
哦...
·
2020-06-24 20:41
misc
Leetcode - Sqrt(x)
Mycode
:publicclassSolution{publicintmySqrt(intx){if(xmiddle){begin=middle+1;}else{returnmiddle;}}returnend
Richardo92
·
2020-06-24 09:26
关于B站播放器ijkPlayer的集成和遇到的bug(持续回复解答,ios)(QQ:479069761)
curl-fsSLhttps://raw.githubusercontent.com/Homebrew/install/master/install)"brewinstallgitbrewinstallyasm创建一个文件夹
mycode
伊卡洛斯Master
·
2020-06-24 06:42
iOS
技术分享
Leetcode - Intersection of Two Linked Lists
Mycode
:/***Definitionforsingly-linkedlist.
Richardo92
·
2020-06-23 07:11
Leetcode - Linked List Cycle
Mycode
:/***Definitionforsingly-linkedlist.
Richardo92
·
2020-06-23 04:12
实验5 Spark SQL编程初级实践
根据所谓标准答案,在进行sbt打包时,报如下错误[error]/home/hadoop/
mycode
/rddtodf/src/main/scala/rddtodf.scala:1:objecttypesisnotamemberofpackageorg
aoaoshuai11111
·
2020-06-22 14:26
Leetcode - Data Stream as Disjoint Intervals
Mycode
:/***Definitionforaninterval.
Richardo92
·
2020-06-22 12:46
Leetcode - Bitwise AND of Numbers Range
Mycode
:publicclassSolution{publicintrangeBitwiseAnd(intm,intn){inti=1;while(m!
Richardo92
·
2020-06-21 05:24
Leetcode - Length of Last Word
Mycode
:publicclassSolution{publicintlengthOfLastWord(Strings){if(s==null||s.length()==0)return0;inttail
Richardo92
·
2020-06-21 00:49
从零开始,搭建一个简单的购物平台(九)
(八):https://blog.csdn.net/time_____/article/details/105452765项目源码(持续更新):https://gitee.com/DieHunter/
myCode
DieHunter1024
·
2020-04-14 08:36
Node.js
Vue
React
node.js
reactjs
Leetcode - Valid Perfect Square
Mycode
:publicclassSolution{publicbooleanisPerfectSquare(intnum){if(nummid){begin=mid+1;}elseif(num%mid
Richardo92
·
2020-04-14 03:35
golang
libexec2.beegoapi生成命令generatedoc报错需要设置goroot的PATHexportGOROOT=/usr/local/opt/go/libexecexportGOPATH=~/
mycode
heliping_peter
·
2020-04-13 19:27
从零开始,搭建一个简单的购物平台(八)
(七):https://blog.csdn.net/time_____/article/details/105448383项目源码(持续更新):https://gitee.com/DieHunter/
myCode
DieHunter1024
·
2020-04-13 14:03
Node.js
Vue
React
node.js
reactjs
从零开始,搭建一个简单的购物平台(七)
(六):https://blog.csdn.net/time_____/article/details/105440818项目源码(持续更新):https://gitee.com/DieHunter/
myCode
DieHunter1024
·
2020-04-13 08:31
Node.js
Vue
React
node.js
reactjs
Leetcode - Combination Sum II
Mycode
:importjava.util.ArrayList;importjava.util.Arrays;importjava.util.List;publicclassSolution{publicList
Richardo92
·
2020-04-12 13:00
从零开始,搭建一个简单的购物平台(六)
(五):https://blog.csdn.net/time_____/article/details/105437534项目源码(持续更新):https://gitee.com/DieHunter/
myCode
DieHunter1024
·
2020-04-12 10:56
Node.js
Vue
React
reactjs
node.js
Leetcode - Reverse Linked List
Mycode
:/***Definitionforsingly-linkedlist.
Richardo92
·
2020-04-12 07:47
13. Roman to Integer
Description:Givenaromannumeral,convertittoaninteger.Inputisguaranteedtobewithintherangefrom1to3999.
Mycode
Icytail
·
2020-04-12 05:13
Leetcode - Maximum Size Subarray Sum Equals k
Mycode
:publicclassSolution{publicintmaxSubArrayLen(int[]nums,intk){if(nums==null||nums.length==0)return0
Richardo92
·
2020-04-12 04:10
Leetcode - Sort Colors
Mycode
:publicclassSolution{publicvoidsortColors(int[]nums){if(nums==null||nums.length==0)return;inthead
Richardo92
·
2020-04-11 15:01
从零开始,搭建一个简单的购物平台(五)
(四):https://blog.csdn.net/time_____/article/details/105414410项目源码(持续更新):https://gitee.com/DieHunter/
myCode
DieHunter1024
·
2020-04-11 14:41
Node.js
Vue
React
react
node.js
Leetcode - Longest Substring with At Most Two Distinct Characters
Mycode
:publicclassSolution{publicintlengthOfLongestSubstringTwoDistinct(Strings){if(s==null||s.length
Richardo92
·
2020-04-11 09:11
从零开始,搭建一个简单的购物平台(四)
(三):https://blog.csdn.net/time_____/article/details/105411636项目源码(持续更新):https://gitee.com/DieHunter/
myCode
DieHunter1024
·
2020-04-11 09:56
Node.js
Vue
React
node.js
reactjs
mongodb
Leetcode - Find the Celebrity
Mycode
:/*TheknowsAPIisdefinedintheparentclassRelation.booleanknows(inta,intb);*/publicclassSolutionextendsRelation
Richardo92
·
2020-04-10 17:41
从零开始,搭建一个简单的购物平台(三)
(二):https://blog.csdn.net/time_____/article/details/105408640项目源码(持续更新):https://gitee.com/DieHunter/
myCode
DieHunter1024
·
2020-04-10 16:41
Node.js
Vue
React
mongodb
node.js
reactjs
Leetcode - Candy
Mycode
:publicclassSolution{publicintcandy(int[]ratings){int[]candy=newint[ratings.length];candy[0]=1;
Richardo92
·
2020-04-09 19:31
从零开始,搭建一个简单的购物平台(二)
(一):https://blog.csdn.net/time_____/article/details/105191286项目源码(持续更新):https://gitee.com/DieHunter/
myCode
DieHunter1024
·
2020-04-09 15:30
Node.js
Vue
React
node.js
javascript
reactjs
mongodb
从零开始,搭建一个简单的购物平台(一)
这个项目是我利用空余的时间写的,商城App界面主要模仿零食商贩小程序写的,其余都是自己写的项目源码(持续更新):https://gitee.com/DieHunter/
myCode
/tree/master
DieHunter1024
·
2020-04-09 11:04
Node.js
Vue
React
node.js
vue.js
reactjs
mongodb
javascript
Leetcode - Reverse Bits
Mycode
:publicclassSolution{//youneedtreatnasanunsignedvaluepublicintreverseBits(intn){intresult=0;for
Richardo92
·
2020-04-09 02:16
Leetcode - Distinct Subsequences
Mycode
:publicclassSolution{publicintnumDistinct(Strings,Stringt){if(s==null||t==null){return0;}elseif
Richardo92
·
2020-04-08 20:57
Leetcode - Trapping Rain Water II
Mycode
:publicclassSolution{privateclassCell{intx;inty;inth;Cell(intx,inty,inth){this.x=x;this.y=y;this.h
Richardo92
·
2020-04-08 16:19
上一页
1
2
3
4
5
6
7
8
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他