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
example1
LeetCode #228 Summary Ranges 汇总区间
228SummaryRanges汇总区间Description:Givenasortedintegerarraywithoutduplicates,returnthesummaryofitsranges.Example:
Example1
air_melt
·
2021-05-07 09:39
LeetCode #7 Reverse Integer 整数反转
7ReverseInteger整数反转Description:Givena32-bitsignedinteger,reversedigitsofaninteger.Example:
Example1
:Input
air_melt
·
2021-05-04 22:32
Apache Storm part 2
Example1
:WordCountEverytimeyoustartanewproject,thefirstthingtodoisdrawingyourtopologyblueprint.wordcounttopologydataflow1
Crazy_Maomao
·
2021-05-04 16:53
html2canvas And FileSaver保存图片到本地
FileSaverGithub地址推荐一款免费的中文网的CDN支持的浏览器Firefox3.5+GoogleChromeOpera12+IE9+Safari6+参考demo测试html5页面截图的生成界面如下:$(".
example1
简书超级会员
·
2021-05-04 08:08
4.median of two sorted arrays
Therearetwosortedarraysnums1andnums2ofsizemandnrespectively.Findthemedianofthetwosortedarrays.TheoverallruntimecomplexityshouldbeO(log(m+n)).
Example1
陆文斌
·
2021-05-03 11:34
张量之拼接切分操作
张量拼接与切分1.1torch.cat()作用:将张量按维度dim进行拼接tensor:张量序列dim:要拼接的维度代码示例:importtorchimportnumpyasnp#************
example1
Leohamss
·
2021-05-03 00:59
python
pytorch
张量
50. Pow(x, n) 求x的n次方
题目链接tag:Medium;question: Implementpow(x,n),whichcalculatesxraisedtothepowern(xn).
Example1
:Input:2.00000,10Output
xingzai
·
2021-04-29 03:55
LeetCode No.414 Third Maximum Number | #Array #long_vs_int
returnthethirdmaximumnumberinthisarray.Ifitdoesnotexist,returnthemaximumnumber.ThetimecomplexitymustbeinO(n).
Example1
wxqyppqm
·
2021-04-25 06:38
LeetCode #557 Reverse Words in a String III 反转字符串中的单词 III
youneedtoreversetheorderofcharactersineachwordwithinasentencewhilestillpreservingwhitespaceandinitialwordorder.Example:
Example1
air_melt
·
2021-04-23 10:24
Leetcode50-Pow(x,n)
题目:Implementpow(x,n),whichcalculatesxraisedtothepowern(xn).
Example1
:Input:2.00000,10Output:1024.00000Example2
BlueSkyBlue
·
2021-04-22 19:39
[leetcode] 14 longest common prefix
Writeafunctiontofindthelongestcommonprefixstringamongstanarrayofstrings.Ifthereisnocommonprefix,returnanemptystring"".
Example1
Kevifunau
·
2021-04-22 12:12
Vue中的watch用法
观察数据为字符串或数组//单观察数据example2为对象时,如果键值发生变化,为了监听到数据变化,需要添加deep:true参数exportdefault{data(){return{example0:"",
example1
页面仔小杨
·
2021-04-21 11:36
Robot Framework之for控制流语句
IN序列(or列表)关键字参数值:For变量INRANGE循环限量关键字参数值二、示例Demo1.FORIN循环>单个循环变量单个循环变量执行结果:2017120715:07:08.559:INFO:
Example1
keitwo
·
2021-04-20 21:04
LeetCode #766 Toeplitz Matrix 托普利茨矩阵
AmatrixisToeplitzifeverydiagonalfromtop-lefttobottom-righthasthesameelement.NowgivenanMxNmatrix,returnTrueifandonlyifthematrixisToeplitz.Example:
Example1
air_melt
·
2021-04-19 16:55
LeetCode #99 Recover Binary Search Tree 恢复二叉搜索树
Twoelementsofabinarysearchtree(BST)areswappedbymistake.Recoverthetreewithoutchangingitsstructure.Example:
Example1
air_melt
·
2021-04-11 12:44
LeetCode #73 Set Matrix Zeroes 矩阵置零
73SetMatrixZeroes矩阵置零Description:Givenamxnmatrix,ifanelementis0,setitsentirerowandcolumnto0.Doitin-place.Example:
Example1
air_melt
·
2021-04-05 10:19
LeetCode #61 Rotate List 旋转链表
61RotateList旋转链表Description:Givenalinkedlist,rotatethelisttotherightbykplaces,wherekisnon-negative.Example:
Example1
air_melt
·
2021-04-03 09:44
LeetCode #50 Pow(x, n) Pow(x, n)
50Pow(x,n)Pow(x,n)Description:Implementpow(x,n),whichcalculatesxraisedtothepowern(xn).Example:
Example1
air_melt
·
2021-03-31 23:42
LeetCode #1154 Day of the Year 一年中的第几天
GivenastringdaterepresentingaGregoriancalendardateformattedasYYYY-MM-DD,returnthedaynumberoftheyear.Example:
Example1
air_melt
·
2021-03-17 08:31
LeetCode #1137 N-th Tribonacci Number 第 N 个泰波那契数
TheTribonaccisequenceTnisdefinedasfollows:T0=0,T1=1,T2=1,andTn+3=Tn+Tn+1+Tn+2forn>=0.Givenn,returnthevalueofTn.Example:
Example1
air_melt
·
2021-03-17 08:27
LeetCode #977 Squares of a Sorted Array 有序数组的平方
GivenanarrayofintegersAsortedinnon-decreasingorder,returnanarrayofthesquaresofeachnumber,alsoinsortednon-decreasingorder.Example:
Example1
air_melt
·
2021-03-10 11:49
LeetCode #961 N-Repeated Element in Size 2N Array 重复 N 次的元素
1uniqueelements,andexactlyoneoftheseelementsisrepeatedNtimes.ReturntheelementrepeatedNtimes.Example:
Example1
air_melt
·
2021-03-09 12:44
LeetCode #859 Buddy Strings 亲密字符串
GiventwostringsAandBoflowercaseletters,returntrueifandonlyifwecanswaptwolettersinAsothattheresultequalsB.Example:
Example1
air_melt
·
2021-03-01 17:54
LeetCode #680 Valid Palindrome II 验证回文字符串 Ⅱ
ⅡDescription:Givenanon-emptystrings,youmaydeleteatmostonecharacter.Judgewhetheryoucanmakeitapalindrome.Example:
Example1
air_melt
·
2021-02-18 19:24
LeetCode #504 Base 7 七进制数
504Base7七进制数Description:Givenaninteger,returnitsbase7stringrepresentation.Example:
Example1
:Input:100Output
air_melt
·
2021-02-08 22:54
【模式识别】基于GUI界面BP网络之手写体大写字母识别【Matlab 125期】
一、简介基于matlabGUI界面BP网络之手写体大写字母识别二、源代码%
Example1
手写体大写字母识别%形成用户界面clearall;%添加图形窗口H=figure('Color',[0.80.81
星斗月辉
·
2021-02-02 13:11
matlab
图像处理
【图像识别】基于BP神经网络之字母识别matlab源码
一、简介基于matlabGUI界面BP网络之手写体大写字母识别二、源代码%
Example1
手写体大写字母识别%形成用户界面clearall;%添加图形窗口H=figure('Color',[0.80.81
青鸟语
·
2021-01-31 20:38
matlab
图像处理
BP神经网络
图像识别
【模式识别】基于matlab GUI界面BP网络之手写体大写字母识别【含Matlab源码 183期】
一、简介基于matlabGUI界面BP网络之手写体大写字母识别二、源代码%
Example1
手写体大写字母识别%形成用户界面clearall;%添加图形窗口H=figure('Color',[0.80.81
紫极神光
·
2021-01-31 10:48
matlab
图像处理
LeetCode #342 Power of Four 4的幂
342PowerofFour4的幂Description:Givenaninteger(signed32bits),writeafunctiontocheckwhetheritisapowerof4.Example:
Example1
air_melt
·
2021-01-26 23:10
LeetCode #268 Missing Number 缺失数字
Givenanarraycontainingndistinctnumberstakenfrom0,1,2,...,n,findtheonethatismissingfromthearray.Example:
Example1
air_melt
·
2021-01-23 23:32
LeetCode #234 Palindrome Linked List 回文链表
234PalindromeLinkedList回文链表Description:Givenasinglylinkedlist,determineifitisapalindrome.Example:
Example1
air_melt
·
2021-01-22 19:23
正则表达式-Java正则表达式的应用
[^abc]除了abc其它单个字符都匹配(只能匹配单个字符)a-z,-取范围:[a-z]匹配范围a-z之类的单个字符[a-zA-Z]还有一种并集的写法[a-z[A-Z]],实际功能操作无区别&&交集:
example1
防秃从C++练起
·
2021-01-18 00:22
Java
java
正则表达式
字符串
JAVA方法传参,到底传了个啥?
正文示例代码//
Example1
:classExample1{staticvoidcheck(inta){a++;}publicstaticvoidmain(String[]args){intx=10;
Java攻城师
·
2021-01-08 12:01
java
后端
spring
springboot
程序员
JAVA方法传参,到底传了个啥?
正文示例代码//
Example1
:classExample1{staticvoidcheck(inta){a++;}publicstaticvoidmain(String[]args){intx=10;
Java攻城师
·
2021-01-08 11:23
java
后端
spring
springboot
程序员
一个基于HTML,Javascript的消除游戏
->viewonlinedemoscreenshot:
Example1
:Example“hint()”:Example[col&row]:{col:20,//set20columnsrow:16,//set16rows
海拥✘
·
2021-01-05 00:23
HTML好玩的简单项目
好玩
游戏
游戏
力扣 leetcode 435. 无重叠区间 贪心
Example1
:输入:[[1,2],[2,3],[3,4],[1,3]]输出:1解释:移除[1,3]后,剩下的区间没有重叠。
Stig.Huang
·
2021-01-02 23:34
python
leetcode
leetcode
算法
贪心算法
python
数据结构
leetcode 136. Single Number(python)
Example1
:Input:num
王大丫丫
·
2020-12-30 17:56
leetcode
leetcode
leetcode 205. 同构字符串 index与哈希(hash)
Example1
:输入:s=“egg”,t=“add”输出:trueExample2:输入:s=“foo”,t=“bar”输出:falseExample3:输入:s=“paper”,t=“title”输出
Stig.Huang
·
2020-12-27 00:26
python
leetcode
python
leetcode
数据结构
字符串
hash
leetcode 455. 分发饼干 贪心算法
Example1
:输入:g=[1,2,3],s=[1,1]输出:1解释:你有三个孩子和两块小饼干,3个孩子的胃口值分别是:1,2,3。
Stig.Huang
·
2020-12-25 14:43
python
leetcode
算法
python
数据结构
贪心算法
leetcode
LeetCode刷题day013 (Jieky)
WriteafunctiontofindthelongestcommonprefixstringamongstanarrayofstringsIfthereisnocommonprefix,returnanemptystring""
Example1
小哥哥咯
·
2020-12-21 23:45
LeetCode
java
leetcode
社会信息系统还有完善空间的5个例子
EXAMPLE1
在汽车上牌的时候,要在公共车牌系统记录下车主的几个常住地址,这些常住地址应与此住址的管理处数据联通。并且小区管理处管理人员有登陆公共车牌系统查到车主联系方式的权限。
星道彩虹
·
2020-10-09 23:44
LeetCode 172. Factorial Trailing Zeroes
Example1
:Input:n=3Output:0Explanation:3!=6,notrailingzero.Example2:Input:n=5Outp
wuqingdeqing
·
2020-09-25 21:12
算法学习笔记
算法
leetcode
14. Longest Common Prefix(easy)
Writeafunctiontofindthelongestcommonprefixstringamongstanarrayofstrings.Ifthereisnocommonprefix,returnanemptystring"".
Example1
1nvad3r
·
2020-09-22 10:05
LeetCode练习 将字符串中的每个单词的字母颠倒,单词顺序不变
*
Example1
:*Input:"Let'stakeLeetCodecontest"*Output:"s'teLekatedoCteeL
月落乌啼silence
·
2020-09-17 09:35
Leetcode
java8之Stream-Collect操作
常用规约操作规约到一个单独的值把数据装进一个list中将数据收集到一个Set中把数据收集到一个Map中Usingothercollections使用其它的集合找出标题最长的task统计tags的总数生成task标题的汇总将元素分组
Example1
咱老李
·
2020-09-17 06:36
jdk8
java
stream
mysql数据库对空格的查询处理
example1
:表里面的字段值都不带空格,where查询条件里面带或不带空格。
lzupb
·
2020-09-16 23:07
数据库
Coding笔记——Longest Substring Without Repeating Characters
**
Example1
:**Input:"abcabcbb"*Output:3*Explanation:Theansweris"abc",withthelengthof3.
PettyKoKo
·
2020-09-16 22:42
【Coding】
Median of Two Sorted Arrays---两个有序数组查找中位数
Therearetwosortedarraysnums1andnums2ofsizemandnrespectively.Findthemedianofthetwosortedarrays.TheoverallruntimecomplexityshouldbeO(log(m+n)).
Example1
Icebela
·
2020-09-16 21:32
JavaScript
leetcode
常见算法 - 从给定数组中选取任意个数(可重复),使其和为给定值。
回溯法练习:从给定有序数组中选取任意个数(可重复),使其和为给定值(leetcode39):
Example1
:Input:candidates=[2,3,6,7],target=7Asolutionsetis
b9x_
·
2020-09-16 18:28
笔记
算法
java给定一个整数数组,找到两个数字,使它们加起来成为一个特定的目标数字
Example1
:给出numbers=[2,7,11,15],target=9,返回[0,1].Example2:给出numbers=[15,2,7,11],tar
揪一下兔耳朵
·
2020-09-15 19:29
Java习题
java
上一页
2
3
4
5
6
7
8
9
下一页
按字母分类:
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
其他