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:
Ex5.1-3 of Introduction to
Algorithms
Question:Supposethatyouwanttooutput0withprobability1/2and1withprobability1/2.AtyourdisposalisaprocedureBIASED-RANDOM,thatoutputseither0or1.Itoutputs1withsomeprobabilitypand0withprobability1-p,where0=p
rx_wen
·
2009-12-04 13:00
Ex5.1-2 of introduction to
algorithms
Afriendaskedmyideaabouttheexercise5.1-2ofintroductionto
algorithms
.Hereistheoriginalquestion:Question:
rx_wen
·
2009-12-02 08:00
推荐一个很好、很强大的程序员电子书下载网站
:http://www.ppurl.com 网站电子书的分类标签 数据库 游戏设计与编程 编程语言与程序设计 网络与通信 虚拟化 计算机安全 软件质量、测试与维护 .NET AJAX
Algorithms
·
2009-11-29 17:00
程序员
An Algorithm Summary of Programming Collective Intelligence
Optimization优化PCI里面介绍了两个算法:simulatedannealing,模拟退火和genetic
algorithms
,遗传算法。
chl033
·
2009-11-19 11:00
Algorithm
优化
算法
网络
validation
optimization
chapter 2 : The Complexity of
Algorithms
and the Lower Bounds of Problems
Definition(complexity)。Thespacecomplexityofanalgorithmistheamountofmemoryitneedstoruntocompletion.。Thetimecomplexityofanalgorithmistheamountofcomputertimeitneedstoruntocompletion.。分析算法所需的时间时,不适合用实际的时
commshare
·
2009-11-16 17:00
Algorithm
算法
Ving I
.)[:81%]《
Algorithms
InANutshell》[:35%]《Introductionto
Algorithms
》[25%:40%] 《Chemistry:TheCentralScience
千里暮云平
·
2009-11-07 13:00
CCNA--RIP的工作原理
RIP协议是基于距离矢量算法(DistanceVector
Algorithms
,DVA)的。它使用“跳数”,即metric来衡量到达目标地址的路由距离。文档见R
meiyanaa
·
2009-11-05 15:57
职场
休闲
CCNA
CCNA--RIP的工作原理
RIP协议是基于距离矢量算法(DistanceVector
Algorithms
,DVA)的。它使用“跳数”,即metric来衡量到达目标地址的路由距离。文档见R
meiyanaa
·
2009-11-05 15:57
职场
休闲
CCNA
CCNA--RIP的工作原理
RIP协议是基于距离矢量算法(DistanceVector
Algorithms
,DVA)的。它使用“跳数”,即metric来衡量到达目标地址的路由距离。文档见RFC10
meiyanaa
·
2009-11-05 15:57
职场
CCNA
休闲
CCNA
迁移学习(Transfer learning)
Traditionaldatamining
algorithms
workwellunderastrictassumption:thetrainingdataandtestdataaredrawnfromthesamedistributioninthesamefeaturespacewiththesamesetofclasslabels.Inmanyrealworldproblems
chl033
·
2009-11-04 13:00
算法
Deployment
frameworks
Training
classification
construction
A bit tired, adhere to!
someemphasize.Myfeelisthatourchancesarecome,andwhatweshoulddoiscatchoneofthem.So,Imustcementmybasis—
algorithms
mzlogin
·
2009-10-30 15:00
System
动态规划(Dynamic Programming)与贪心算法(Greedy
Algorithms
)
动态规划动态规划是用来解决优化问题的,即要作出一组选择以达到最优解。动态规划有两个标志:一是可以划分最优子问题,二是子问题有重叠性(可以自底向上存储这些子问题的解,把算法效率从指数时间降到多项式时间)。例如,动态规划可以运用在矩阵相乘上。在矩阵连乘的时候,在中间增加括号是不影响最后结果的。也就是说A*B*C=A*(B*C)。假设A、B、C的维数为10X100,100X5和5X50,那么两种方法的运
wangxiaojun911
·
2009-10-18 13:00
c
算法
优化
function
破解
C++的一些免费库[转]
,theMatrixTemplateLibrary.Denseandsparsematricesandvectors;banded,symmetric,triangularmatrices;basic
algorithms
.C
doujiu
·
2009-10-14 22:00
C++
c
C#
matlab
fortran
ACM介绍。
于是在看Introductionto
Algorithms
(2/e),另外也找了一些OnlineJudge。
sinojelly
·
2009-10-07 22:05
职场
休闲
ACM介绍。
于是在看Introductionto
Algorithms
(2/e),另外也找了一些OnlineJudge。
sinojelly
·
2009-10-07 22:05
职场
休闲
计数排序 实现
计数排序实现 from ->introdutionto
algorithms
原理简单,稳定性高,有应用条件即:n个输入元素都是在0-k之间的整数,当k=O(n)时,计数排序的时间为O(n).
MemoryGarden's Blog
·
2009-09-29 13:00
qsort 随机化版本实现
qsort随机化版本实现from->introdutionto
algorithms
随机化,即将partition的哨兵随机化,从而来平衡时间复杂度。
MemoryGarden's Blog
·
2009-09-29 13:00
qsort 实现
qsort实现from->introdutionto
algorithms
分治的思想。
MemoryGarden's Blog
·
2009-09-28 14:00
priority queue 实现
priorityqueue实现from ->introdutionto
algorithms
大体和堆差不多。
MemoryGarden's Blog
·
2009-09-28 12:00
排序算法复习(Java实现)(二): 归并排序,堆排序,桶式排序,基数排序
package
algorithms
;import java.lang.ref
sky04
·
2009-09-22 09:00
转贴--Java Hash算法大全
None* @author Goodzzp 2006-11-20* @lastEdit Goodzzp 2006-11-20* @editDetail Create*/public class Hash
Algorithms
JOGL
·
2009-09-20 09:00
WiMAX Bootstrap Security 中用到的 AES-CCM 算法 C 语言源码
http://www.deadhat.com/wmancrypto/index.html802.16AES-CCM
Algorithms
DavidJohnstonThefilesonthispagecontainsimpleANSICimplementationsof
algorithms
relatedtothe802.16and802.16esecurityprotocols.Theyarenotd
Dreamcode
·
2009-09-10 17:00
c
算法
Security
语言
encryption
construction
WiMAX Bootstrap Security 中用到的 AES-CCM 算法 C 语言源码
http://www.deadhat.com/wmancrypto/index.html 802.16 AES-CCM
Algorithms
David Johnston The
izuoyan
·
2009-09-10 17:00
C++
c
算法
C#
Security
Java 缓存,缓存算法,缓存框架
命中率,存储成本,获取成本,失效,替换策略,优化的替换策略,缓存算法,分布式缓存,缓存度量http://www.jtraining.com/blogs/intro-to-caching-caching-
algorithms
-and-caching-frameworks.htmlCache
ihuashao
·
2009-09-08 11:00
java
html
算法
框架
cache
Java 缓存,缓存算法,缓存框架
命中率,存储成本,获取成本,失效,替换策略,优化的替换策略,缓存算法,分布式缓存,缓存度量http://www.jtraining.com/blogs/intro-to-caching-caching-
algorithms
-and-caching-frameworks.htmlCache
kobexing933
·
2009-09-08 11:00
java
html
算法
框架
cache
Java 缓存,缓存算法,缓存框架
命中率,存储成本,获取成本,失效,替换策略,优化的替换策略,缓存算法,分布式缓存,缓存度量http://www.jtraining.com/blogs/intro-to-caching-caching-
algorithms
-and-caching-frameworks.htmlCache
seloba
·
2009-09-08 11:00
java
html
算法
框架
cache
8 Queens Solution with Genetic Algorithm
18.3KbDownloadsource-2.32KbGeneticAlgorithm,TheoryTherearesomanybooksandsomanyresourcesontheWebaboutGenetic
Algorithms
.ThebestthatIcandoisquotesomenicedescriptionsfrommypreferredsites
BlogDown
·
2009-09-06 22:00
Algorithm
大量Hash算法的实现
None* @author Goodzzp 2006-11-20* @lastEdit Goodzzp 2006-11-20* @editDetail Create*/public class Hash
Algorithms
zhaomengsen
·
2009-09-04 18:00
算法
J#
大量Hash算法的实现
None* @author Goodzzp 2006-11-20* @lastEdit Goodzzp 2006-11-20* @editDetail Create*/public class Hash
Algorithms
zhaomengsen
·
2009-09-04 18:00
算法
J#
tar, gzip, and bzip2
#gzipbig.jpg#bzip2big.jpgItaddsa.gzora.bz2suffixtothefile,compressedtotheassociated
algorithms
.Youcanuncompressfromthesefil
johnsonx
·
2009-08-31 08:34
生活
职场
休闲
Robert Endre. Tarjan
图灵奖引用(Turing Award Citation) : For fundamental achievements in the design and analysis of
algorithms
BlogDown
·
2009-08-30 13:00
tar
10部算法经典著作的合集
1.FundamentalsofDataStructures2.DataStructures,
Algorithms
,andProgramStyleUsingC3.DataStructuresandAlgorithmAnalysisinC4
lewutian
·
2009-08-30 00:00
10部算法经典著作的合集
Data Structures,
Algorithms
, and Program Style Using C3.
BlogDown
·
2009-08-30 00:00
算法
Attribute weighting via genetic
algorithms
for attribute 翻译
属性加权通过遗传算法的属性加权人工免疫系统(AWAIS)及其应用心脏病和肝脏疾病的问题 摘要现在越来越多的算法和应用涉及到了AIS。然而这种增长趋势所带来的成功研究表明,AIS并不是解决这些问题的有效方法,比如分类,回归,模式识别等。到目前为止,许多改进的AIS算法已经应用了距离或相似性测量的情况在实例基于学习(IBL)的算法。IBL主要依赖于他们所用的加权方式。这种加权想法在我们所用的遗传算法中
紫冰百合
·
2009-08-22 10:07
算法
职场
休闲
Attribute weighting via genetic
algorithms
for attribute 翻译
属性加权通过遗传算法的属性加权人工免疫系统(AWAIS)及其应用心脏病和肝脏疾病的问题 摘要现在越来越多的算法和应用涉及到了AIS。然而这种增长趋势所带来的成功研究表明,AIS并不是解决这些问题的有效方法,比如分类,回归,模式识别等。到目前为止,许多改进的AIS算法已经应用了距离或相似性测量的情况在实例基于学习(IBL)的算法。IBL主要依赖于他们所用的加权方式。这种加权想法在我们所用的遗传算法中
紫冰百合
·
2009-08-22 10:07
算法
职场
休闲
Java设计模式(3) -- 策略
Strategy 英文简单描述IntentDefineafamilyof
algorithms
,encapsulateeachone,andmaketheminterchangeable.Strategyletsthealgorithmchangedynamically.HowtoStrategydeclaresaninterfacecommontoallsupported
algorithms
.Co
gtuu0123
·
2009-08-18 12:00
策略模式(Strategy Pattern)的介绍
Incomputerprogramming,thestrategypattern(alsoknownasthepolicypattern)isaparticularsoftwaredesignpattern,whereby
algorithms
canbeselectedatruntime.Insomeprogramminglanguages
dujingjing1230
·
2009-08-16 22:00
ASP.NET
C#
JEFF关于OSPF水平分割的回信
Splithorizonisusedondistancevector
algorithms
(rip,eigrp),topreventaroutefrombeingadvertisedbackoutaninterfaceinwhichitwasreceived
yeyefox000
·
2009-08-12 00:04
职场
休闲
ospf
JEFF关于OSPF水平分割的回信
Splithorizonisusedondistancevector
algorithms
(rip,eigrp),topreventaroutefrombeingadvertisedbackoutaninterfaceinwhichitwasreceived.OSPFisnotadistancevectoralgorithm.Aloopfreetopologyisbuilt
yeyefox000
·
2009-08-12 00:04
职场
OSPF
休闲
ccie
JEFF关于OSPF水平分割的回信
Splithorizonisusedondistancevector
algorithms
(rip,eigrp),topreventaroutefrombeingadvertisedbackoutaninterfaceinwhichitwasreceived
yeyefox000
·
2009-08-12 00:04
职场
休闲
ospf
RIP命令
RIP协议是基于距离矢量算法(DistanceVector
Algorithms
)的,它使用“跳数”,即metric来衡量到达目标地址的路由距离。
yushan8398
·
2009-08-06 14:33
网络
职场
休闲
RIP命令
RIP协议是基于距离矢量算法(DistanceVector
Algorithms
)的,它使用“跳数”,即metric来衡量到达目标地址的路由距离。
yushan8398
·
2009-08-06 14:33
网络
职场
休闲
DNS安全相关
andcachingDNSresolver.TheCimplementationofUnboundisdevelopedandmaintainedbyNLnetLabs.Itisbasedonideasand
algorithms
takenfromajavaprototypedeveloped
cnbird2008
·
2009-08-05 14:00
prototype
validation
application
caching
Components
安全相关
C++ 算法(STL)
DisplayallentriesforC++
Algorithms
ononepage,orviewentriesindividually:accumulatesumuparangeofelements求和
cclsoft
·
2009-08-03 11:00
C++
算法
function
Random
iterator
permutation
Java实现排序算法(二): 归并排序,堆排序,桶式排序,基数排序
package
algorithms
; import java.lang.reflect.Array; /** * @author yovn * */ public
yintel
·
2009-07-13 18:00
java
算法
.net
J#
Java实现排序算法(二): 归并排序,堆排序,桶式排序,基数排序
package
algorithms
; import java.lang.reflect.Array; /** * @author yovn * */ public
yintel
·
2009-07-13 18:00
java
算法
.net
J#
Java实现排序算法(一): 插入排序,冒泡排序,选择排序,Shell排序,快速排序
为了便于管理,先引入个基础类: package
algorithms
; /** * @author yovn * */ public abstract class Sorter
yintel
·
2009-07-13 18:00
java
算法
.net
J#
UP
Java实现排序算法(一): 插入排序,冒泡排序,选择排序,Shell排序,快速排序
为了便于管理,先引入个基础类: package
algorithms
; /** * @author yovn * */ public abstract class Sorter
yintel
·
2009-07-13 18:00
java
.net
算法
J#
UP
设计模式20:Strategy Pattern (策略模式)
Define:Defineafamilyof
algorithms
,encapsulateeachone,andmaketheminterchangeable.Strategyletsthealgorithmvaryindependentlyfromclientsthatuseit
rocket5725
·
2009-07-07 11:00
设计模式
算法
list
Class
inheritance
methods
Project: Polygon Triangulation
proj/polygon_triang.htmlDesigntheinterfacebetweendatastructuresthatrepresentsimplepolygonsandgeneric
algorithms
·
2009-07-03 09:00
上一页
139
140
141
142
143
144
145
146
下一页
按字母分类:
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
其他