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:
论文读书笔记-Submodular meets Spectral: Greedy
Algorithms
for Subset Selection, Sparse Approximation and D
标题:SubmodularmeetsSpectral:Greedy
Algorithms
forSubsetSelection,SparseApproximationandDictionarySelection
jj12345jj198999
·
2012-11-18 15:00
boost 自带教程在哪
Algorithms
BrokenCompil
yasi_xi
·
2012-11-18 14:00
STL算法(
Algorithms
):极值
STL算法(
Algorithms
):极值1、min:返回两个两个参数中的最小值原型:templateconstT&min(constT&a,constT&b);template constT&min(constT
lewutian
·
2012-11-18 11:00
STL算法(
Algorithms
):排序
一、sort:对一定范围内的所有元素排序 原型: template <class RandomAccessIterator> void sort ( RandomAccessIterator first, RandomAccessIterator last ); template <class RandomAccessIterator, class Compare>
BlogDown
·
2012-11-18 11:00
algorithms
STL算法(
Algorithms
):堆(heap)
1、make_heap:使序列变成堆原型:template voidmake_heap(RandomAccessIteratorfirst,RandomAccessIteratorlast);template voidmake_heap(RandomAccessIteratorfirst,RandomAccessIteratorlast, Comparecomp)
lewutian
·
2012-11-18 11:00
STL算法(
Algorithms
):排序
一、sort:对一定范围内的所有元素排序原型:template voidsort(RandomAccessIteratorfirst,RandomAccessIteratorlast);template voidsort(RandomAccessIteratorfirst,RandomAccessIteratorlast,Comparecomp);例子代码://sortalgorithmexa
lewutian
·
2012-11-18 11:00
STL算法(
Algorithms
):修改操作(拷贝、替换等)
Stl的函数对象的写操作:copy、copy_backward、swap、swap_ranges、iter_swap、transform、replace、replace_if、replace_copy、replace_copy_if、fill、fill_n、generate、generate_n、remove、remove_if、remove_copy、remove_copy_if、unique、
lewutian
·
2012-11-18 11:00
STL算法(
Algorithms
):修改操作(拷贝、替换等)
Stl的函数对象的写操作: copy、copy_backward、swap、swap_ranges、iter_swap、transform、 replace、replace_if、replace_copy、replace_copy_if、fill、fill_n、 generate、generate_n、remove、remove_if、remove_copy、remove_copy_if、 un
BlogDown
·
2012-11-18 11:00
algorithms
STL算法(
Algorithms
):合并(Merge)
1、merge:将两个序列合并成一个新的序列,并对新的序列排序原型:template OutputIteratormerge(InputIterator1first1,InputIterator1last1, InputIterator2first2,InputIterator2last2,OutputIteratorresult);templateO
lewutian
·
2012-11-18 11:00
STL算法(
Algorithms
):合并(Merge)
1、merge:将两个序列合并成一个新的序列,并对新的序列排序 原型: template <class InputIterator1, class InputIterator2, class OutputIterator> OutputIterator merge ( InputIterator1 first1, InputIterator1 last1, InputIterator
BlogDown
·
2012-11-18 11:00
algorithms
每日一题(4)——动态规划《Introduction to
Algorithms
》总结篇
概述同分治法一样动态规划是通过组合子问题的解而解决整个问题的动态规划的4个步骤:1.描述最优解结构;2.递归定义最优解的值;3.按自底向上方式计算最优解;4.由计算出的结果构造最优解;(1-3步是基础,第4步可以略去) 动态规划特点,包含重复子问题,可以用图结构保存中间结果,不用重复计算。 1.装配线调度(PS:这图太磕碜了,没办法,原来网页版的算法导论在PKU的服务器上有,现在不让访问了,悲剧啊
sangni007
·
2012-11-16 20:00
自学算法之路
<Introduction to
Algorithms
>,这本是算法最 经典教材,几乎所有学习算法都用的这本书。2.
windshg
·
2012-11-16 10:00
算法
The Most Important
Algorithms
(in CS and Math)
原文转载from:http://www.risc.jku.at/people/ckoutsch/stuff/e_
algorithms
.html1.A*searchalgorithm
abcjennifer
·
2012-11-15 16:00
Programming is a science
becausemostofusdon'tunderstandthephysicsofsoftware,andit'srarelyifevertaught.Thephysicsofsoftwareisnot
algorithms
tyt2222008
·
2012-11-14 07:00
java trie树
packagecom.jwetherell.
algorithms
.data_structures; importjava.util.Arrays; /** *Atrie,orprefixtree,
zhongweijian
·
2012-11-13 23:00
java trie树
package com.jwetherell.
algorithms
.data_structures; import java.util.Arrays; /** * A
zhwj184
·
2012-11-13 23:00
java
java trie树
package com.jwetherell.
algorithms
.data_structures; import java.util.Arrays; /** * A
zhwj184
·
2012-11-13 23:00
java
java 关于区间树,KD树,线段树,伸展树,后缀树,红黑树的几段代码
区间树可以统计某个区间对应的重复的区间packagecom.jwetherell.
algorithms
.data_structures; importjava.security.InvalidParameterException
zhongweijian
·
2012-11-13 22:00
java 关于区间树,KD树,线段树,伸展树,后缀树,红黑树的几段代码
区间树 可以统计某个区间对应的重复的区间 package com.jwetherell.
algorithms
.data_structures; import java.security.InvalidParameterException
zhwj184
·
2012-11-13 22:00
java
java 关于区间树,KD树,线段树,伸展树,后缀树,红黑树的几段代码
区间树 可以统计某个区间对应的重复的区间 package com.jwetherell.
algorithms
.data_structures; import java.security.InvalidParameterException
zhwj184
·
2012-11-13 22:00
java
细数二十世纪最伟大的十大算法
参考论文:TheBestofthe20thCentury:EditorsNameTop10
Algorithms
。ByBarryA.Cipra。
hguisu
·
2012-11-13 17:00
Open source robotics toolkits: use virtual arenas to test your robotics
algorithms
ca=dgr-lnxw09OSRoboticToolkitsOpensourceroboticstoolkitsUsevirtualarenastotestyourrobotics
algorithms
M.TimJones
zhaoyl03
·
2012-11-13 17:00
深度学习(Deep Learning)综述
查看abriefintroductiontoMachineLearningforAI 和 anintroductiontoDeepLearning
algorithms
. 深度学习是关
chenbang110
·
2012-11-12 23:00
配置WifiConfiguration
StringSSID,StringPassword,intType) { WifiConfigurationconfig=newWifiConfiguration(); config.allowedAuth
Algorithms
.clear
faith_boys
·
2012-11-12 16:00
android
MapReduce 模式、算法和用例(一)
from=20121111本文译自 MapreducePatterns,
Algorithms
,andUseCases在这篇文章里总结了几种网上或者论文中常见的MapReduce模式和算法,并系统化的解释了这些技术的不同之处
sbp810050504
·
2012-11-12 09:04
mapreduce
算法和用例
聚类算法K-Means, K-Medoids, GMM, Spectral clustering,Ncut
Clustering
Algorithms
分类1.Partitioningapproach:建立数据的不同分割,然后用相同标准评价聚类结果。(比如最小化平方误差和)典型算法
Rachel-Zhang
·
2012-11-11 13:48
Machine
Learning
Data
Mining
聚类算法K-Means, K-Medoids, GMM, Spectral clustering,Ncut
Clustering
Algorithms
分类1.Partitioningapproach: 建立数据的不同分割,然后用相同标准评价聚类结果。(比如最小化平方误差和)
abcjennifer
·
2012-11-11 13:00
java 关于二叉搜索树,平衡二叉树,b树,二叉堆的几段代码
二叉搜索树,比较简单的树结构了 package com.jwetherell.
algorithms
.data_structures; import java.util.ArrayDeque
zhwj184
·
2012-11-09 17:00
java
java 关于二叉搜索树,平衡二叉树,b树,二叉堆的几段代码
二叉搜索树,比较简单的树结构了 package com.jwetherell.
algorithms
.data_structures; import java.util.ArrayDeque
zhwj184
·
2012-11-09 17:00
java
java 关于二叉搜索树,平衡二叉树,b树,二叉堆的几段代码
二叉搜索树,比较简单的树结构了packagecom.jwetherell.
algorithms
.data_structures; importjava.util.ArrayDeque; importjava.util.ArrayList
zhongweijian
·
2012-11-09 17:00
NoSQL数据库的分布式算法
本文另一地址请见NoSQL数据库的分布式算法本文译自Distributed
Algorithms
inNoSQLDatabases系统的可扩展性是推动NoSQL运动发展的的主要理由,包含了分布式系统协调,故障转移
可观
·
2012-11-09 16:00
分布式
NoSQL
== 算法学习入门 ==
最重要的XX:TheMostImportant
Algorithms
http://www.risc.jku.at/people/ckoutsch/stuff/e_
algorithms
.html10BestAlgorithmWebsitesTheTop
AlgorithmS
itesontheWebhttp
yyhustim
·
2012-11-08 19:00
== The History of Cryptography/
Algorithms
/ conceptual modeling ==
id=192Historyof
Algorithms
http://cs-exhibitions.uni-klu.ac.at/index.php?
yyhustim
·
2012-11-08 19:00
基于HSV空间的交通标志检测
主要思想来自颜色分类论文《GoalEvaluationofSegmentation
Algorithms
forTrafficSignRecognition》HSV(Hue,Saturation,Value
kobesdu
·
2012-11-02 20:52
opencv学习
VS2008学习
基于HSV空间的交通标志检测
主要思想来自颜色分类论文《GoalEvaluationofSegmentation
Algorithms
forTrafficSignRecognition》HSV(Hue,Saturation,Value
kobesdu
·
2012-11-02 20:00
基于RGB空间的交通标志检测
主要思想来自颜色分类论文《GoalEvaluationofSegmentation
Algorithms
forTrafficSignRecognition》RGB空间是通常的初始的空间,如果简单的分割过程是其目的
kobesdu
·
2012-11-02 20:00
java算法之基数排序
package com.hym.test.
algorithms
; public class RadixSort { private int[] arrayTest = { 5, 26, 1,
huyumin
·
2012-11-01 09:00
java算法
java算法之快速排序
package com.hym.test.
algorithms
; public class QuickSort { private int[] arrayTest = { 5, 26, 1,
huyumin
·
2012-11-01 09:00
java算法
java算法之希尔排序
package com.hym.test.
algorithms
; public class ShellSort { private int[] arrayTest = { 5, 26, 1,
huyumin
·
2012-11-01 09:00
java算法
java算法之归并排序
package com.hym.test.
algorithms
; public class MergeSort { private int[] arrayTest = { 5, 26, 1,
huyumin
·
2012-11-01 09:00
java算法
Latex 中插入代码
Latex中插入代码http://en.wikibooks.org/wiki/LaTeX/
Algorithms
_and_Pseudocode Typesettingusingthe algorithm2e
I believe
·
2012-10-31 21:00
【转载】Beam Search Algorithm (Draft by Andrew Jungwirth)
原文链接:http://jhave.org/
algorithms
/graphs/beamsearch/beamsearch.shtml =================================
xceman1997
·
2012-10-31 19:00
intrinsic image decomposition
MicahK.Johnson,EdwardH.Adelson,andWilliamT.Freeman,Groundtruthdatasetandbaselineevaluationsforintrinsicimage
algorithms
luckyboy101
·
2012-10-31 18:00
第二十二章:图的基本算法
关于此章节的习题解答,请查阅:https://sites.google.com/site/
algorithms
solution/home/c22一、图的概念图的分类: 是否有环是否有重边是否有有向边SimpleUndirectedGraph
xiazdong
·
2012-10-31 14:00
java算法之二分查找
package com.hym.test.
algorithms
; public class BinarySerch { int[] arrayTest = { 1, 2, 5, 9, 23,
huyumin
·
2012-10-31 11:00
java算法
MapReduce 模式、算法和用例
本文另一地址请见 MapReduce模式、算法和用例本文译自MapreducePatterns,
Algorithms
,andUseCases在这篇文章里总结了几种网上或者论文中常见的MapReduce模式和算法
可观
·
2012-10-30 12:00
mapreduce
hadoop
rip的工作原理
RIP协议是基于距离矢量算法(DistanceVector
Algorithms
)的,它使用“跳数”,即metric来衡量到达
王泽民
·
2012-10-30 07:35
工作原理
rip
block swaping 原地归并排序的基础(in-place parallel merge sort)
Algorithms
forswappingblocksofdataappearsimple,butvarywidelyintheirperformanceprofiles.Choosingtherightonecanbecrucialtogoodperformance.S
zzran
·
2012-10-29 20:00
java算法之插入排序
package com.hym.test.
algorithms
; public class InsertSort { int[] arrayTest = { 5, 26, 1, 783, 23
huyumin
·
2012-10-29 18:00
java算法
Algorithms
第四版 习题 4.1.36 边连通性
4.1.36EdgeConnectivity边连通性定义:桥是如果从图中删去将生成两个子图的边。如果图中没有桥,则说该图是具有边连通性的。图片源:http://moodle.bracu.ac.bd/mod/page/view.php?id=465如上图,通过深度优先搜索DFS得到的一颗DFS树。对任意子树的根,如B,要连通他的孩子们时,除了通过DFS生成的Treeedge,树边,还可以通过指向B自
zhouhao011280s
·
2012-10-27 10:00
上一页
125
126
127
128
129
130
131
132
下一页
按字母分类:
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
其他