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:
Machine Learning---Neural Network
上对NeuralNetwork的定义: Inmachinelearning,artificialneuralnetworks(ANNs)areafamilyofstatisticallearning
algorithms
inspiredby
u012736084
·
2015-01-16 23:00
Pattern
NetWork
learning
machine
recognition
Neural
Useful Code
Thispagecollectspublicly-availableresourcesandcodethatareusefulforvisualeffects.GeneralProgramsIrfanviewGIMPOpenCVParaviewImageMattingAlphaMattingEvaluation forbenchmarkingmatting
algorithms
Closed-fo
luckyboy101
·
2015-01-15 08:00
Lettcode_136_Single Number
details/42713315Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimec
pistolove
·
2015-01-14 18:00
java
LeetCode
算法
异或运算
[LeetCode]41.First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldrunin
SunnyYoona
·
2015-01-13 21:00
LeetCode
排序
数组
A Tour of Machine Learning
Algorithms
Afterweunderstandthetypeofmachinelearningproblemweareworkingwith,wecanthinkaboutthetypeofdatatocollectandthetypesofmachinelearning
algorithms
wecantry
necrazy
·
2015-01-13 15:00
Pattern
deep
learning
learning
machine
matching
算法经典书籍推荐
2.
Algorithms
算法
hustyangju
·
2015-01-12 10:00
Algorithms
LeetCode - First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldrunin
yuanhsh
·
2015-01-10 00:00
[LeetCode]162 Find Peak Element
https://oj.leetcode.com/problemset/
algorithms
/http://siddontang.gitbooks.io/leetcode-solution/content
furuijie8679
·
2015-01-09 16:17
LeetCode
[LeetCode]160 Intersection of Two Linked Lists
https://oj.leetcode.com/problemset/
algorithms
/http://www.cnblogs.com/yuzhangcmu/p/4128794.html/** *
furuijie8679
·
2015-01-09 16:49
LeetCode
[C++]LeetCode: 67 Single Number II
题目:Givenanarrayofintegers,everyelementappears three timesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
cinderella_niu
·
2015-01-04 22:00
LeetCode
bit
manipulation
[C++]LeetCode: 66 Single Number
题目:Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
cinderella_niu
·
2015-01-04 21:00
LeetCode
table
hash
bit
manipulation
Single Number
Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
havedream_one
·
2015-01-04 16:00
LeetCode
number
single
PHP 标准AES加密算法类
分享一个标准PHP的AES加密算法类,其中mcrypt_get_block_size('rijndael-128','ecb');,如果在不明白原理的情况下比较容易搞错,可以通过mcrypt_list_
algorithms
D_Eristin
·
2014-12-31 16:00
LeetCode(41) First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given[1,2,0]return3,and[3,4,-1,1]return2.Your
algorithms
houldruninO
feliciafay
·
2014-12-31 08:00
LeetCode
sorting
【LeetCode】First Missing Positive 解题报告
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldrunin
ljiabin
·
2014-12-28 21:00
LeetCode
array
first
Missing
Positi
Strategy策略模式
(原文:The Strategy Pattern defines a family of
algorithms
,encapsulates each one,and makes them interchangeable
·
2014-12-25 18:00
strategy
策略模式(java)
(原文:TheStrategyPatterndefinesafamilyof
algorithms
,encapsulateseachone,andmakestheminterchangeable.Strategyletsthealgorithmv
chenleixing
·
2014-12-25 16:00
java
设计模式
策略
策略模式
java模式
数据加密-怎样确定RSA Key 的长度
rsa_key_length.shtmlWhenyoucreateanRSAkeypair,youspecifyakeylengthinbits,asgenerallyyouwouldforother
algorithms
.Specifically
yuxiaohui78
·
2014-12-25 00:00
mahout入门指南之基于mahout的itembased算法
Mahout已实现的算法(单机版和分布式版)https://mahout.apache.org/users/basics/
algorithms
.html 大多数情况下,我们只是调用maho
linger2012liu
·
2014-12-22 23:00
hadoop
Mahout
协同过滤
Itembased
LeetCode:Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
hnuzengchao
·
2014-12-21 22:00
LeetCode
单链表
LeetCode:Single Number II
Givenanarrayofintegers,everyelementappears three timesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
hnuzengchao
·
2014-12-20 20:00
LeetCode
二进制
C1803错误
有一个名为
algorithms
的标准C++库头文件,它没有.h文件扩展名。通过此i
leecmin
·
2014-12-18 20:07
[LeetCode]Single Number II
Givenanarrayofintegers,everyelementappears three timesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
u014691362
·
2014-12-17 21:00
java
LeetCode
位运算
笔记:上过的关于Coursera上的一些课程
No1:Bioinformatic
algorithms
(Part1)https://github.com/jschendel/bioinformatics-
algorithms
-courseraNo2:
H349117102
·
2014-12-17 15:00
notes
LeetCode:Single Number
Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
hnuzengchao
·
2014-12-17 10:00
LeetCode
Numbers
《Go语言编程》【2.7 完整示例】的错误
今天看《Go语言编程》再次发现了两处错误,一处是目录名称
algorithms
,根据上下文推测,目录名应当是没有最后一个字幕s的algorithm,因为最后main主程序import导入包时、调用排序函数时
董松
·
2014-12-11 21:00
Go
Go语言编程
《Go语言编程》【2.7 完整示例】的错误
今天看《Go语言编程》再次发现了两处错误,一处是目录名称
algorithms
,根据上下文推测,目录名应当是没有最后一个字幕s的algorithm,因为最后main主程序import导入包时、调用排序函数时
dongsong1117
·
2014-12-11 20:25
Go
Go语言编程
《Go语言编程》【2.7 完整示例】的错误
今天看《Go语言编程》再次发现了两处错误,一处是目录名称
algorithms
,根据上下文推测,目录名应当是没有最后一个字幕s的algorithm,因为最后main主程序import导入包时、调用排序函数时
dongsong1117
·
2014-12-11 20:25
Go
Go语言编程
HEVC算法和体系结构:资源获取和章节安排
从今天开始,将陆续更新自己学习总结的最新版HEVC著作《HighEfficiencyVideoCoding(Hevc):
Algorithms
andArchitectures》中的相关知识点,原书英文电子版需要的可在下面评论留言
FRD2009041510
·
2014-12-10 15:00
HEVC
算法和体系结构
Mahout初探(一)
Supported
Algorithms
ClassificationLogisticRegression(SGD)BayesianSupportVectorMachines(SVM)PerceptronandWinnowNeuralNetworkRandomForestsRestrictedBoltzmannMachinesOnlinePassiveAggressiveBoostingHiddenM
renyp8799
·
2014-12-08 18:00
NoSQL数据库的分布式算法
数据放置均衡数据动态环境中的数据分片和复制按照多个属性的数据分片钝化副本系统协调故障检测协调者竞选NoSQL数据库的分布式算法本文另一地址请见NoSQL数据库的分布式算法本文译自 Distributed
Algorithms
inNoSQLDatabases
jinyeweiyang
·
2014-12-06 21:00
Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
luxialan
·
2014-12-06 19:00
Codeforces Round #277 (Div. 2)E题
Thenext"DataStructuresand
Algorithms
"lessonwillbeaboutLongestIncreasingSubsequence(LISforshort)ofasequence.Forbetterunderstanding
Fsss_7
·
2014-12-06 16:00
【LeetCode】
Algorithms
题集(九)
ProductofArrayExceptSelf 题意:Givenanarrayofnintegerswheren>1,nums,returnanarrayoutputsuchthatoutput[i]isequaltotheproductofalltheelementsofnumsexceptnums[i].SolveitwithoutdivisionandinO(n).Forexample,g
jcjc918
·
2014-12-05 22:00
LeetCode
CC150 9.4
Whatarethecommonsorting
algorithms
?
furuijie8679
·
2014-12-05 09:05
interview
【LeetCode】
Algorithms
题集(八)
KthSmallestElementinaBST 题意: Givenabinarysearchtree,writeafunctionkthSmallesttofindthekthsmallestelementinit. Note: Youmayassumekisalwaysvalid,1≤k≤BST'stotalelements. Followup: WhatiftheBSTismod
jcjc918
·
2014-12-04 21:00
LeetCode
[置顶] 高效effective C++ 55条款之个人学习笔记一
Object-orientedC++.TemplateC++ STLcontainers,iterators,
algorithms
条款2:尽量使用const,enum,inline替换#define关键字这样我们可以使用编译器替换预编译器
bjtbjt
·
2014-12-04 10:00
【HEVC学习与研究】38、HEVC编码过程中的块分割结构
本文主要分为前后两部分,前半部分基本是VivienneSze、MadhukarBudagaviGary和J.Sullivan所编著的《HighEfficiencyVideo Coding(HEVC)——
Algorithms
andArchitectures
shaqoneal
·
2014-12-03 22:00
算法
block
h.264
HEVC
块分割
Java Hash算法
author Goodzzp 2006-11-20 * @lastEdit Goodzzp 2006-11-20 * @editDetail Create */ public class Hash
Algorithms
梁杰_Jack
·
2014-12-02 16:00
Single Number II
Givenanarrayofintegers,everyelementappearsthreetimesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
zzyafyj
·
2014-11-30 22:00
LeetCode:Single Number
Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
weiyuefei
·
2014-11-29 13:00
Single Number
Givenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
zzyafyj
·
2014-11-28 15:00
位运算
【LeetCode】
Algorithms
题集(七)
ContainsDuplicate题意: Givenanarrayofintegers,findifthearraycontainsanyduplicates.Yourfunctionshouldreturntrueifanyvalueappearsatleasttwiceinthearray,anditshouldreturnfalseifeveryelementisdistinct.思路:
jcjc918
·
2014-11-27 18:00
LeetCode
【LeetCode】
Algorithms
题集(六)
SortColors题意: Givenanarraywithnobjectscoloredred,whiteorblue,sortthemsothatobjectsofthesamecolorareadjacent,withthecolorsintheorderred,whiteandblue. Here,wewillusetheintegers0,1,and2torepresentthe
jcjc918
·
2014-11-26 23:00
LeetCode
【LeetCode】
Algorithms
题集(五)
MergeTwoSortedLists题意: Mergetwosortedlinkedlistsandreturnitasanewlist.Thenewlistshouldbemadebysplicingtogetherthenodesofthefirsttwolists.思路: 合并两个链表,考察的是指针操作。多注意指针是否为空,指针操作需谨慎。有两种情况: 1.其中一个链表为空,则直接
jcjc918
·
2014-11-25 23:00
LeetCode
算法列表
http://en.wikipedia.org/wiki/List_of_
algorithms
Thefollowingisa listof
algorithms
alongwithone-linedescriptionsforeach.Contents
lonelyrains
·
2014-11-25 19:00
算法列表
字符串以及文件的hashlib的md5和sha1等的运用
hashlib的md5和sha1等的运用importhashlibprint(hashlib.
algorithms
_available)print(hashlib.
algorithms
_guaranteed
独钓渔
·
2014-11-25 19:00
关联规则:R与SAS的比较
啤酒和尿布的故事是关联分析方法最经典的案例,而用于关联分析的Apriori算法更是十大数据挖掘算法之一(http://www.cs.uvm.edu/~icdm/
algorithms
/index.shtml
猪猪daxia
·
2014-11-25 10:00
Python hashlib、hmac模块
中的用于加密的函数位于hashlib,hmac模块中,都是内置模块,直接导入即可使用hashlib模块实现了md5,sha1,sha224,sha256,sha384,sha512等算法,可以通过hashlib.
algorithms
_available
Calling_Wisdom
·
2014-11-24 23:53
python
Python
学习笔记
Python hashlib、hmac模块
中的用于加密的函数位于hashlib,hmac模块中,都是内置模块,直接导入即可使用hashlib模块实现了md5,sha1,sha224,sha256,sha384,sha512等算法,可以通过hashlib.
algorithms
_available
Calling_Wisdom
·
2014-11-24 23:00
python
上一页
107
108
109
110
111
112
113
114
下一页
按字母分类:
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
其他