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:
深度学习算法简介
IntroductiontoDeepLearning
Algorithms
¶Seethefollowingarticleforarecentsurveyofdeeplearning(下面的文章是近来深度学习算法的调研
凌风探梅
·
2016-04-29 23:55
DeepLearning
机器学习
深度学习算法简介
IntroductiontoDeepLearning
Algorithms
¶Seethefollowingarticleforarecentsurveyofdeeplearning(下面的文章是近来深度学习算法的调研
Real_Myth
·
2016-04-29 23:00
24. Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmaynotmodifythevaluesinthelist
a342500329a
·
2016-04-29 01:00
算法的泛化过程
何为算法以有限的步骤,解决逻辑或数学上的问题,
Algorithms
!算法分析空间复杂度、时间复杂度分类质变算法:会改变操作对象的值,例如拷贝、互换。非质变算法:不改变操作对象的值,例如查找、匹配。
wangshubo1989
·
2016-04-29 00:00
算法
STL
《
Algorithms
算法》笔记:优先队列(3)——堆排序
堆排序1堆排序思想堆排序的思想很简单,就是利用了堆的优点,不断的找最大值,然后删除最大值,重复操作。-首先,要构造一个二叉堆出来,我们采用自底向上的思想。做删除root的操作(但是不是真删除,只是把root元素放到最后了)循环直到数组有序。我们可以发现加入的代码非常少!!3.2堆排序代码publicclassHeap{ publicstaticvoidsort(Comparable[]a) { i
hk2291976
·
2016-04-28 21:00
算法
heap
堆排序
《
Algorithms
算法》笔记:优先队列(2)——二叉堆
二叉堆1二叉堆的定义堆是一个完全二叉树结构(除了最底下一层,其他层全是完全平衡的),如果每个结点都大于它的两个孩子,那么这个堆是有序的。二叉堆是一组能够用堆有序的完全二叉树排序的元素,并在数组中按照层级存储(不用数组的第一个位置) 2二叉堆的性质最大的元素在a[1](root结点)每个k的父亲在k/2每个k的孩子在k*2和k*2+13二叉堆的操作3.1上浮(孩子大于父亲)——对应插入操作循环,每次
voidsky
·
2016-04-28 21:00
《
Algorithms
算法》笔记:优先队列(2)——二叉堆
二叉堆1二叉堆的定义堆是一个完全二叉树结构(除了最底下一层,其他层全是完全平衡的),如果每个结点都大于它的两个孩子,那么这个堆是有序的。二叉堆是一组能够用堆有序的完全二叉树排序的元素,并在数组中按照层级存储(不用数组的第一个位置)2二叉堆的性质最大的元素在a[1](root结点)每个k的父亲在k/2每个k的孩子在k*2和k*2+13二叉堆的操作3.1上浮(孩子大于父亲)——对应插入操作循环,每次比
hk2291976
·
2016-04-28 21:00
算法
二叉堆
《
Algorithms
算法》笔记:优先队列(1)——API和初等实现
1.优先队列的API和初等实现做一个总结:栈:先进后出队列:先进先出随机队列:随机出优先队列:每次出来的是最大值或最小值1.1优先队列的API优先队列在很多场合都有用,比如:在大量数据里,如果取前M大的数据(存储不足以存下如此大规模数据),就可以用优先队列(MinPQ来做,类似MaxPQ,只是每次删除最小值)——一直保证队列中只有M个比较大的数据,每次删除超过M个里面的最小值。1.2初等实现如果用
hk2291976
·
2016-04-28 21:00
算法
栈
优先队列
《
Algorithms
算法》笔记:优先队列(1)——API和初等实现
1.优先队列的API和初等实现做一个总结:栈:先进后出队列:先进先出随机队列:随机出优先队列:每次出来的是最大值或最小值1.1优先队列的API 优先队列在很多场合都有用,比如:在大量数据里,如果取前M大的数据(存储不足以存下如此大规模数据),就可以用优先队列(MinPQ来做,类似MaxPQ,只是每次删除最小值)——一直保证队列中只有M个比较大的数据,每次删除超过M个里面的最小值。 1.2初等实
voidsky
·
2016-04-28 21:00
leetcode--Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmaynotmodifythevaluesinthelist
a1b2c3d4123456
·
2016-04-28 20:00
算法
leetcode136-137:single number
everyelementappearstwiceexceptforone.Findthatsingleone.LC137:Givenanarrayofintegers,everyelementappearsthreetimesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhav
u010111016
·
2016-04-28 11:00
Leetcode 136 SingleNumber
题目:Givenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
xinyuehuixin
·
2016-04-28 08:00
LeetCode
算法
MachineLearning—Generative Learning
algorithms
这一节我们介绍机器学习课程当中的GenerativeLearning
algorithms
生成学习算法,此算法与我们之前学习的逻辑回归等算法不太一样,它主要利用了贝叶斯公式为核心,也因此随后我们将引入朴素贝叶斯
qq_14959801
·
2016-04-27 22:00
机器学习
代码实现
learning
learning
machine
generative
高斯判别分析GDA
HDU-5532//2015ACM/ICPC亚洲区长春站-重现赛-F - Almost Sorted Array/,哈哈,水一把区域赛的题~~
262144KB 64bitIOFormat:%I64d&%I64uSubmit Status Practice HDU5532DescriptionWeareallfamiliarwithsorting
algorithms
NYIST_TC_LYQ
·
2016-04-26 10:00
LeeCode-Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
u013018721
·
2016-04-25 18:00
LeeCode
STL学习_SGI空间配置器
STL的六大组件:(1)容器:containers (2)算法:
algorithms
(3)迭代器:iterator(4)仿函数:functors (5
xixihaha331
·
2016-04-25 18:00
希尔排序 时间复杂度 证明
Shellsort Shellsortisoneoftheoldestsorting
algorithms
,namedafteritsinventorD.L.Shell(1959) [She59].Itisfast
u013007900
·
2016-04-24 10:00
时间复杂度
希尔排序
排序算法的时间复杂度
Sorting
Algorithms
andComplexitiesnisthenumberofelementskisthenumberofdistinctobjectsAlgorithmTimeComplexitySpaceComplexityBubblesort-inplace
tigerisland45
·
2016-04-23 21:00
复杂度
排序算法
Spark机器学习(三) Labeled point-- Data Types
LabeledpointAlabeledpointisalocalvector,eitherdenseorsparse,associatedwithalabel/response.InMLlib,labeledpointsareusedinsupervisedlearning
algorithms
.Weuseadoubletostorealabel
snug
·
2016-04-23 16:00
scala
scala
spark
spark
大数据
MLlib
MLlib
从分类,排序,top-k多个方面对推荐算法稳定性的评价
介绍论文名:“classification,ranking,andtop-kstabilityofrecommendation
algorithms
”.本文讲述比较推荐系统在三种情况下,推荐稳定性情况.与常规准确率比较的方式不同
ghostlv
·
2016-04-23 13:00
推荐系统
评价
稳定性
收藏的一些链接(以备后查)
的课程资源材料(不需要注册,免费):http://ocw.mit.edu/courses/find-by-topic/#cat=engineering&subcat=computerscience&spec=
algorithms
anddatastructures2
WayToAccept
·
2016-04-23 11:00
公开课
MIT
OCW
公开课网站
Spark机器学习(一) -- Machine Learning Library (MLlib)
smachinelearning(ML)library.Itsgoalistomakepracticalmachinelearningscalableandeasy.Itconsistsofcommonlearning
algorithms
andutilities
snug
·
2016-04-23 08:00
spark
大数据
机器学习
MLlib
MLlib
【一天一道LeetCode】#24. Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmaynotmodifytheva
terence1212
·
2016-04-22 21:00
LeetCode
算法
数据结构与算法的学习问题——The Data Structures and
Algorithms
Learning Problem
原文:TheDataStructuresand
Algorithms
LearningProblem作者:StevenLott链接地址:https://dzone.com/articles/slott-software-architect-the-data-structures-and-a
Francis-Leo
·
2016-04-22 19:52
………算法
【
英语
】
生成学习算法(Generative Learning
Algorithms
)
今天我们来聊一聊生成学习算法,内容主要包括生成模型和判别模型的比较,以及生成学习算法的一个例子——高斯判别分析(GaussianDiscriminantAnalysis,GDA)。1.生成模型和判别模型前面我们讨论的学习算法(线性回归、逻辑回归、softmax等)都有一个共同点,那就是我们都在想方设法求出p(y|x;θ),也就是说,给定特征x,我们直接求出y的条件概率作为模型的输出,直接作出判断。
isMarvellous
·
2016-04-22 19:00
算法
机器学习
人工智能
分类
概率
leetcode——137—— Single Number II
Givenanarrayofintegers,everyelementappearsthreetimesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
happyxuma1991
·
2016-04-21 20:00
LeetCode
算法题
LeetCode之24----Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
Jung_zhang
·
2016-04-21 19:00
LeetCode
算法
leetcode——136——Single Number
Givenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
happyxuma1991
·
2016-04-21 19:00
LeetCode
算法题
机器学习算法笔记2_1:生成学习算法(Generative Learning
algorithms
)
我们之前学习的算法都是基于p(y|x;θ),他的思想是找出找出一个决策边界来将两类分开,而生成算法是先对两个类别分别建模,为了将样本分开,将样本代入两个模型,看样本与哪个类别更匹配。这种试图直接从输入x映射到类别标签{0,1}的算法被称为判别学习算法;而通过计算p(x|y)(和p(y))来得到模型的算法被称为生成学习算法通过贝叶斯函数得到p(y|x)=p(x|y)p(y)p(x),argmaxyp
BUPT_WX
·
2016-04-21 14:07
算法
机器学习
机器学习算法笔记2_1:生成学习算法(Generative Learning
algorithms
)
我们之前学习的算法都是基于p(y|x;θ),他的思想是找出找出一个决策边界来将两类分开,而生成算法是先对两个类别分别建模,为了将样本分开,将样本代入两个模型,看样本与哪个类别更匹配。这种试图直接从输入x映射到类别标签{0,1}的算法被称为判别学习算法;而通过计算p(x|y)(和p(y))来得到模型的算法被称为生成学习算法通过贝叶斯函数得到p(y|x)=p(x|y)p(y)p(x),argmaxyp
BUPT_WX
·
2016-04-21 14:00
算法
机器学习
[置顶] A Complete Tutorial on Tree Based Modeling from Scratch (in R & Python)
www.analyticsvidhya.com/blog/2016/04/complete-tutorial-tree-based-modeling-scratch-in-python/IntroductionTreebasedlearning
algorithms
areconsideredtobeoneofthebestandmostlyusedsupervisedlearn
qq_26898461
·
2016-04-21 11:00
【leetcode】268. Missing Number
Givenanarraycontainingndistinctnumberstakenfrom0,1,2,...,n,findtheonethatismissingfromthearray.Forexample,Givennums=[0,1,3]return2.Note:Your
algorithms
houldruninlinearruntimecomplexity.Couldyouimple
chenyj92
·
2016-04-21 11:31
leetcode
[hdu 5532] [2015ACM/ICPC亚洲区长春站 ] Almost Sorted Array 最长不下降子序列
Others)TotalSubmission(s):1917AcceptedSubmission(s):494ProblemDescriptionWeareallfamiliarwithsorting
algorithms
ALPS233
·
2016-04-21 08:00
ACM
Code Forces 650 C Table Compression(并查集)
C.TableCompressiontimelimitpertest4secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputLittlePetyaisnowfondofdatacompression
algorithms
.Hehasalreadystudiedgz
Dacc123
·
2016-04-20 21:00
并查集
codeforces
650C
面试中的二叉树问题总结【Java版】
package
Algorithms
.tree; importjava.util.ArrayList; importjava.util.Iterator; importjava.util.LinkedList
fbz123456
·
2016-04-19 21:00
CF 651 E 并查集(矩阵关系不变) 挺好的
E.TableCompressiontimelimitpertest4secondsmemorylimitpertest256megabytesinputstandardinputoutputstandardoutputLittlePetyaisnowfondofdatacompression
algorithms
.Hehasalreadystudied
zcj5027
·
2016-04-19 18:00
Leetcode题解14 136. Single Number
Givenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
Xd_Yu
·
2016-04-19 10:00
LeetCode
268. Missing Number
distinctnumberstakenfrom 0,1,2,...,n,findtheonethatismissingfromthearray.Forexample,Given nums = [0,1,3] return 2.Note:Your
algorithms
houldruninlinearruntimecomplexity.Couldyou
qq_27991659
·
2016-04-18 21:00
带权最短路 Dijkstra, SPFA, Bellman-Ford, ASP, Floyd-Warshall 算法分析
本文主要介绍的算法的代码主要来源如下:Dijkstra:
Algorithms
(《算法概论》)SanjoyDasgupta,ChristosPapadimitriou,UmeshVazirani;《算法竞赛入门经典
tham_
·
2016-04-18 11:00
最短路
dijkstra
SPFA
Bell_ford
floyd_Warshall
二分图的最大匹配、完美匹配和匈牙利算法
二分图的最大匹配、完美匹配和匈牙利算法2013-08-01
Algorithms
二分图匹配, 图论, 算法这篇文章讲无权二分图(unweightedbipartitegraph)的最大匹配(maximummatching
liu940204
·
2016-04-17 22:00
java之Symmetric encryption techniques
SymmetricencryptiontechniquesSymmetricencryptionusesasinglekeytoencryptanddecryptamessage.Thistypeof encryptionisclassifiedaseitherstreamciphersorblockciphers.Moredetailsaboutthese
algorithms
canb
doctor_who2004
·
2016-04-16 15:00
Recursive PLS
algorithms
for adaptive的简单介绍
本文介绍了RecursivePLS
algorithms
foradaptive的基本思想http://download.csdn.net/detail/he_min/9492622ecursivePLS
algorithms
foradaptivedatamodeling
he_min
·
2016-04-15 21:00
Spark入门学习交流—Spark生态圈
1、简介1.1Spark简介Spark是加州大学伯克利分校AMP实验室(
Algorithms
,Machines,andPeopleLab)开发通用内存并行计算框架。
jim_cainiaoxiaolang
·
2016-04-14 10:14
一步一步学习Spark
STL的迭代器和类型萃取
和类型萃取好好整理一下了迭代器的设计思维是STL的关键所在,在STL的实际运用和泛型思维,迭代器都扮演着十分重要的角色,STL力求把数据容器和算法的概念分开来,于是就有了STL的两大部分,容器(container)和泛型算法(
algorithms
leno米雷
·
2016-04-13 11:00
[C语言][LeetCode][24]Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmaynotmodifytheval
Timsley
·
2016-04-13 08:00
LeetCode
算法
LeetCode 41. First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given[1,2,0]return3,and[3,4,-1,1]return2.Your
algorithms
houldruninO
github_34333284
·
2016-04-12 00:00
LeetCode 229. Majority Element II
Givenanintegerarrayofsizen,findallelementsthatappearmorethan⌊n/3⌋times.The
algorithms
houldruninlineartimeandinO
github_34333284
·
2016-04-11 22:00
leetcode 24 Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmaynotmodifythe
jnuyanfa
·
2016-04-11 22:00
LeetCode
行为型模式之策略模式
(Defineafamilyof
algorithms
,encapsulateeachone,andmaketheminterchangeable.Strategyletsthealgorithmv
悦兮Yui
·
2016-04-11 21:56
设计模式
LeetCode 268. Missing Number(缺失数字)
Givenanarraycontainingndistinctnumberstakenfrom0,1,2,...,n,findtheonethatismissingfromthearray.Forexample,Givennums=[0,1,3]return2.Note:Your
algorithms
jmspan
·
2016-04-11 02:40
众数
比特
位运算
完整
缺失
独特
上一页
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
其他