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
algorithms
26.leetcode题目136: Single Number
题目:Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
hzj379805931
·
2016-03-29 16:00
[leetcode] 41. First Missing Positive 解题报告
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldr
qq508618087
·
2016-03-29 14:00
LeetCode
array
优化算法动画演示Alec Radford's animations for optimization
algorithms
AlecRadfordhascreatedsomegreatanimationscomparingoptimization
algorithms
SGD,Momentum,NAG,Adagrad,Adadelta
garfielder007
·
2016-03-29 12:41
算法
LeetCode 260
allotherelementsappearexactlytwice.Findthetwoelementsthatappearonlyonce.Forexample:Givennums=[1,2,1,3,2,5],return[3,5].
Algorithms
ho
github_34333284
·
2016-03-29 04:00
《leetCode》:Missing Number
Note: Your
algorithms
houldruninlinearruntimecomplexity.Couldyou
u010412719
·
2016-03-28 21:00
LeetCode
算法
Missing
Numbers
算法第四版 课后习题答案
:书上的过程图有些是比较坑的(非错误问题),比如P525的NFA并不是只执行了构造函数后的结果而是将构造函数和该类中的一个方法一起运行后的结果,比较坑,如果对书中算法有什么不懂的可以看看我写的注释(在
Algorithms
Zcc?
·
2016-03-28 17:59
An overview of gradient descent optimization
algorithms
转载自:http://sebastianruder.com/optimizing-gradient-descent/梯度下降优化及其各种变体。1.随机梯度下降(SGD)2.小批量梯度下降(mini-batch)3.最优点附近加速且稳定的动量法(Momentum)4.在谷歌毛脸中也使用的自适应学习率AdaGrad5.克服AdaGrad梯度消失的RMSprop和AdaDelta。S.RuderTabl
beihangzxm123
·
2016-03-28 10:51
深度学习Deep
Learning
《leetCode》:Majority Element II
The
algorithms
houldruninlineartimeandinO(1)space.思路这个题不会做也,下面思路来源于:https://leetcode.com/discuss/82195/
u010412719
·
2016-03-27 17:00
LeetCode
算法
element
majority
【LeetCode】24. Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
qq_27991659
·
2016-03-26 21:00
[LeetCode]Missing Number
distinctnumberstakenfrom 0,1,2,...,n,findtheonethatismissingfromthearray.Forexample,Given nums = [0,1,3] return 2.Note:Your
algorithms
houldruninlinearruntimecomplexity.Couldyou
CiaoLiang
·
2016-03-26 14:00
lintcode-medium-Longest Consecutive Sequence
ClarificationYour
algorithms
houldruninO(n)complexity.ExampleGiven [100,4,200,1,3,2],Thelongestconsecutiveelementsseq
哥布林工程师
·
2016-03-26 08:00
leetcode: Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
frank-liu
·
2016-03-26 08:02
梯度下降优化算法综述(翻译)
原文题目:Anoverviewofgradientdescentoptimization
algorithms
原文链接:http://sebastianruder.com/optimizing-gradient-descent
hellonlp
·
2016-03-24 22:00
优化
算法
神经网络
深度学习
算法入门(一) 排序
thefollowingclassillustratestheconventionsthatwewillusepublicclassExample { publicstaticvoidsort(Comparable[]a) {/*See
Algorithms
2.1,2.2,2.3,2.4,2.5
胡马依北风
·
2016-03-23 21:00
【算法】- 动态规划的编织艺术
Reference:Introductionto
Algorithms
DynamicProgrammingisusedtosolveoptimizationproblem.Itfirstlypartitiontheproblemintosubproblems.Thencombinethesolutionofsubproblemsintothesolutionoftheoriginalproblem
aliceyangxi1987
·
2016-03-23 20:00
算法
这只猩猩很难控制 - Two star programming
Twostarprogramming2013-01-08•C,Torvalds,
Algorithms
•46CommentsAfewweeksagoLinusTorvaldsansweredsomequestionsonslashdot.Allhisresponsesmakegoodreadingbutoneinparticularcaughtmyeye.Askedtodescribehisfavo
shuimuyq
·
2016-03-23 16:00
This implementation is not part of the Windows Platform FIPS validated cryptographic
algorithms
while
今天运行自己的网站时报了这样一个错误,很是纳闷,这个网站运行了这么久,怎么报这个错呢,原来是做缓存的时候用到了基于windows平台的加密算法。解决方法如下:删除注册表下的这个节点即可。删除HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\Lsa下的FipsAlgorithmPolicy文件夹。然后保存,重启程序即可。
feng轻云淡
·
2016-03-22 23:00
Trees on the level(UVA122,二叉树的建立)
BackgroundTreesarefundamentalinmanybranchesofcomputerscience.Currentstate-of-theartparallelcomputerssuchasThinkingMachines'CM-5arebasedon fattrees.Quad-andoctal-treesarefundamentaltomany
algorithms
inco
longshanxiaoxuesheng
·
2016-03-22 17:00
计算机视觉的测试数据及源码站点
ComputerVision:
Algorithms
andApplicationsRi
jzwong
·
2016-03-22 17:00
<
> 总结
Machineleaningaddressesthequestionofhowtobuildcomputersthatimproveautomaticallythroughexperience.Conceptually,machine-learning
algorithms
can
xtydtc
·
2016-03-22 15:00
机器学习
python 下的数据结构与算法---1:让一切从无关开始
我也忘了大概多久了,好像是三周多一点,终于把DataStructureand
Algorithms
withpython以及ProblemSolvingwith
Algorithms
and DataStructures
billiepander
·
2016-03-21 22:00
Codeforces Round #345 (Div. 2) E. Table Compression
E.TableCompressiontimelimitpertest4secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputLittlePetyaisnowfondofdatacompression
algorithms
.Hehasalreadystudied
acm_fighting
·
2016-03-21 10:00
抓取 leetcode 问题列表
fromurllib.requestimporturlopen frombs4importBeautifulSoup importre html=urlopen('https://leetcode.com/problemset/
algorithms
hotea
·
2016-03-20 13:00
python
爬虫
策略模式
Defineafamilyof
algorithms
,encapsulateeachone,andmaketheminterchangeable.策略模式的通用类图策略模式的通用代码策略接口publicinterfaceIStrategy
hsx1612727380
·
2016-03-20 10:00
【LeetCode题意分析&解答】41. First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldrunin
水果拼盘武士G
·
2016-03-19 23:00
基于密度的聚类算法(DBSCAN)的java实现
(推荐《DataMiningandAnalysis:FundamentalConceptsand
Algorithms
》)。下面的代码是对基于密度聚类算法的
aturbofly
·
2016-03-18 19:13
数据挖掘
基于密度的聚类算法(DBSCAN)的java实现
(推荐《DataMiningandAnalysis:FundamentalConceptsand
Algorithms
》)。下面的代码是
u010850027
·
2016-03-18 19:00
数据挖掘
聚类
DBSCAN
基于密度
Spark机器学习:概念和安装
Spark由加州大学伯克利分校AMP实验室 (
Algorithms
,Machines,andP
pipisorry
·
2016-03-18 16:00
spark
机器学习
leetcode--singnal num
Givenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:our
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
a1b2c3d4123456
·
2016-03-18 15:00
LeetCode
singnalnum
论文的写作规范(二)
论文的写作规范i.e.的位置(1)括号内Thefirstfour
algorithms
(i.e.,singlelinkage,completelinkage,groupaverage,andweightedgroupaverage
lanchunhui
·
2016-03-16 23:00
Codeforces Round #345 (Div. 1) C. Table Compression (并查集)
LittlePetyaisnowfondofdatacompression
algorithms
.Hehasalreadystudied gz, bz, zip
algorithms
andmanyothers.Inspiredbythenewknowledge
Kirito_Acmer
·
2016-03-16 18:00
并查集
【python】:python学习的好资源
2.python数据结构与算法2.1http://visualgo.net一个学习的好网站,可视化数据结构,非常形象2.2《Problemsolvingwith
algorithms
anddatas
fbiciaccc
·
2016-03-16 15:45
K-Means
K-Means
AlgorithmS
tep1--Arbitrarilychoosefromthegivensamplesetkinitialclustercentres,M(0)(j)=[m(0)1(j)
u012240857
·
2016-03-15 15:00
机器学习
模式识别
可视化的数据结构 - 各种算法动画演示
blog.csdn.net/bigleo/article/details/412196471.可视化数据结构:http://www.cs.usfca.edu/~galles/visualization/
Algorithms
.html
wejoncy
·
2016-03-15 14:00
C++
Single Number
Givenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
qdqade
·
2016-03-15 12:11
number
Single
leetcode
LeetCode题解-----Majority Element II 摩尔投票法
题目描述:Givenanintegerarrayofsize n,findallelementsthatappearmorethan ⌊n/3⌋ times.The
algorithms
houldruninlineartimeandinO
姚灯灯!
·
2016-03-14 20:00
LeetCode题解-----Majority Element II 摩尔投票法
题目描述:Givenanintegerarrayofsize n,findallelementsthatappearmorethan ⌊n/3⌋ times.The
algorithms
houldruninlineartimeandinO
姚灯灯!
·
2016-03-14 20:00
codeforces Codeforces Round #345 (Div. 1) C. Table Compression 排序+并查集
C.TableCompressionLittlePetyaisnowfondofdatacompression
algorithms
.Hehasalreadystudiedgz,bz,zip
algorithms
andmanyothers.Inspiredbythenewknowledge
hxer
·
2016-03-14 18:00
stl之迭代器(iterator)
在stl中,迭代器充当着容器(containers)和算法(
algorithms
)的粘合剂,所以了解迭代器十分重要。
LinuxG_G
·
2016-03-13 17:30
iterator
迭代器
stl
STL
leetcode:41. First Missing Positive (Java)
Your
algorithms
houldruninO(n)tim
u012975705
·
2016-03-13 15:00
java
LeetCode
博客
Theano深度学习(一). 概述
查看abriefintroductiontoMachineLearningforAI 和 anintroductiontoDeepLearning
algorithms
.
walegahaha
·
2016-03-12 22:00
深度学习
【CS229 lecture20】策略搜索
partiallyobservableMDPs)-Policysearch(themaintopicfortodaywillbepolicysearchalgorithm,specificllyI’lltalkabouttwo
algorithms
namedReinforcedandPegasus
qiusuoxiaozi
·
2016-03-12 21:00
算法
搜索
机器学习
Single Number(异或的性质及运用)
Description:Givenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
hjhomw
·
2016-03-12 10:32
LeetCode
leetcode:268. Missing Number(Java)解答
Note: Your
algorithms
hou
u012975705
·
2016-03-11 22:00
java
LeetCode
异或
博客
UVa 1025 - A Spy in the Metro
题目链接UVa1025ASpyintheMetro问题描述SecretagentMariawassentto
Algorithms
Citytocarryoutanespeciallydangerousmission.Afterseveralthrillingeventswendherintherststationof
Algorithms
CityMetro
Dextrad_ihacker
·
2016-03-10 17:00
算法
动态规划
uva
scikit-feature: Open-Source Feature Selection Repo
scikit-featureisanopen-sourcefeatureselectionrepositoryinpython,witharound40popular
algorithms
infeatureselectionresearch.ItisdevelopedbyDataMiningandMachineLearningLabatArizonaStateUniversity.ByJundong
openthings
·
2016-03-10 10:00
python
feature
scikit
Codeforces Round #345 (Div. 1) C. Table Compression
LittlePetyaisnowfondofdatacompression
algorithms
.Hehasalreadystudiedgz,bz,zip
algorithms
andmanyothers.Inspiredbythenewknowledge
u014258433
·
2016-03-10 08:00
python—networkx:各个布局的源代码
Sourcecodefornetworkx.drawing.layout方便学习与重新封装""" ****** Layout ****** Nodepositioning
algorithms
forgraphdrawing
ztf312
·
2016-03-09 13:00
Codeforces Round #345 (Div. 2) E. Table Compression 并查集
题目连接:http://www.codeforces.com/contest/651/problem/EDescriptionLittlePetyaisnowfondofdatacompression
algorithms
.Hehasalreadystudiedgz
qscqesze
·
2016-03-08 10:00
Search and Sort
HeaderfileBinarysearchSelectionSearchBubblesortHeapsortInsertionsortSummaryIstudyDataStructureandAlgorithminGeeksforGeeksandplaywiththe
algorithms
inC.Inthispart
klaas
·
2016-03-07 22:00
算法
结构
上一页
86
87
88
89
90
91
92
93
下一页
按字母分类:
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
其他