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
GZIP、LZO、Zippy/Snappy压缩算法应用场景小结
: http://www.cnblogs.com/panfeng412/archive/2012/12/24/applications-scenario-summary-of-compression-
algorithms
.htmlGZIP
kwu_ganymede
·
2015-12-24 14:00
压缩
算法
GZip
lzo
snappy
leetcode笔记:First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given[1,2,0]return3,and[3,4,-1,1]return2.Your
algorithms
houldruninO
liyuefeilong
·
2015-12-24 01:00
Algorithm
LeetCode
C++
vector
positive
多线程下队列的优化
相关文章:Simple,Fast,andPracticalNon-BlockingandBlockingConcurrentQueue
Algorithms
多线程队列的算法优化1.基本原理对于多线程下,多生产者
Jabnih
·
2015-12-22 18:00
MIT Introduction to
Algorithms
学习笔记(五)
Lecture4:Heapsandheapsort1.堆(Heap)堆是一个数组对象,可以看作是一个类完全二叉树(nearlycompletebinarytree)。堆的一些操作:rootoftree:firstelementinthearray,correspondingtoi=1parent(i)=i/2:returnsindexofnode'sparentleft(i)=2i:returns
hyaicc
·
2015-12-22 15:00
python
算法导论
Heaps
leetcode -- Different Ways to Add Parentheses -- 重点
leetcode.com/problems/different-ways-to-add-parentheses/思路就是分治递归,看看code就知道思路了参考http://www.tangjikai.com/
algorithms
xyqzki
·
2015-12-21 21:00
LeetCode
MIT Introduction to
Algorithms
学习笔记(四)
lecture3InsertionSort,MergeSort1.(插入排序)Insertionsortdef InsertSort(L): if(len(L) == 0 or len(L) == 1): return L tmp = 0 for i in range(1,len(L)): for j in range(i,
hyaicc
·
2015-12-21 16:00
python
算法导论
贪心算法(4)-最小生成树Prim算法
www.acmerblog.com/prims-minimum-spanning-tree-mst-5786.html参考地址 http://www.geeksforgeeks.org/greedy-
algorithms
-set
a2459956664
·
2015-12-20 09:00
贪心算法(3)-霍夫曼编码
原文地址 http://www.acmerblog.com/greedy-huffman-coding-5388.html参考地址 http://www.geeksforgeeks.org/greedy-
algorithms
-set
·
2015-12-20 09:00
贪心算法(2)-Kruskal最小生成树
www.acmerblog.com/greedy-kruskal-spanning-tree-mst-5326.html参考地址 http://www.geeksforgeeks.org/greedy-
algorithms
-set
a2459956664
·
2015-12-20 08:00
leetcode -- Count Complete Tree Nodes -- 重点。BFS
https://leetcode.com/problems/count-complete-tree-nodes/思路1递归参考http://www.tangjikai.com/
algorithms
/leetcode
xyqzki
·
2015-12-18 23:00
LeetCode
C++中的容器类详解
STL(StandardTemplateLibrary)的六大组件:容器(containers)、迭代器(iterators)、空间配置器(allocator)、配接器(adapters)、算法(
algorithms
taiyang1987912
·
2015-12-18 15:00
C++
现代优化算法 之 模拟退火
这些算法包括禁忌搜索(tabusearch),模拟退火(simulatedannealing),遗传算法(genetic
algorithms
),人工神经网络(neuralnetworks)。
SuPhoebe
·
2015-12-18 14:38
数学建模
机器学习与数学模型
现代优化算法 之 模拟退火
这些算法包括禁忌搜索(tabusearch),模拟退火(simulatedannealing),遗传算法(genetic
algorithms
),人工神经网络(neuralnetworks)。
u013007900
·
2015-12-18 14:00
模拟退火
现代优化算法
MIT Introduction to
Algorithms
学习笔记(三)
Lecture2:ModelsofComputation(Ⅱ) 代码版本V1效率很低,我们试着找到效率瓶颈,在代码中加入以下代码:if __name__ == "__main__": import profile profile.run("main()")运行的部分结果:从结果看get_words_from_line_list,count_frequency,get_words_f
hyaicc
·
2015-12-18 13:00
python
算法导论
Missing Number
distinctnumberstakenfrom 0,1,2,...,n,findtheonethatismissingfromthearray.Forexample,Given nums = [0,1,3] return 2.Note:Your
algorithms
houldruninlinearruntimecomplexity.Couldyou
qq_18343569
·
2015-12-17 22:00
Single Number II
Givenanarrayofintegers,everyelementappears three timesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
qq_18343569
·
2015-12-17 19:00
Single Number
Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
qq_18343569
·
2015-12-17 18:00
dbscan基于密度的空间聚类算法
参考文献:百度百科 http://baike.baidu.com我的算法库:https://github.com/linyiqun/lyq-
algorithms
-lib 算法介绍说到聚类算法,大家如果有看过我写的一些关于机器学习的算法文章
qq_26562641
·
2015-12-17 16:00
Tarjan算法--有向图强连通分量算法
参考链接:https://www.byvoid.com/blog/scc-tarjan/我的算法库:https://github.com/linyiqun/lyq-
algorithms
-lib算法介绍正如标题所介绍的那样
qq_26562641
·
2015-12-17 16:00
基于连通图的分裂聚类算法
参考文献:基于连通图动态分裂的聚类算法.作者:邓健爽郑启伦彭宏邓维维(华南理工大学计算机科学与工程学院,广东广州510640)我的算法库:https://github.com/linyiqun/lyq-
algorithms
-lib
qq_26562641
·
2015-12-17 16:00
Chameleon两阶段聚类算法
2182752.html(用了很多的图和思想)博客园(华夏35度)作者:Orisun数据挖掘算法-Chameleon算法.百度文库我的算法库:https://github.com/linyiqun/lyq-
algorithms
-lib
qq_26562641
·
2015-12-17 16:00
遗传算法在走迷宫游戏中的应用
我的数据挖掘算法库:https://github.com/linyiqun/DataMiningAlgorithm 我的算法库:https://github.com/linyiqun/lyq-
algorithms
-lib
qq_26562641
·
2015-12-17 16:00
【LeetCode】268 Missing Number (java实现)
Givenanarraycontainingndistinctnumberstakenfrom0,1,2,...,n,findtheonethatismissingfromthearray.Forexample,Givennums=[0,1,3]return2.Note:Your
algorithms
houldruninlinearruntimecomplexity.Couldyouimplemen
styshoo
·
2015-12-17 11:00
java
LeetCode
算法
MIT Introduction to
Algorithms
学习笔记(二)
Lecture2:ModelsofComputation(Ⅰ)什么是算法(Algorithm)?l Mathematicalabstractionofcomputerprograml Computationalproceduretosolveaproblem 算法和程序的类比:两种计算模型(Modelofcomputation): RandomAccessMachine(RAM) RandomA
hyaicc
·
2015-12-17 10:00
python
算法导论
LeetCode First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldrunin
wuli2496
·
2015-12-16 22:00
MIT Introduction to
Algorithms
学习笔记(一)
MITIntroductionto
Algorithms
学习笔记http://ocw.mit.edu/courses/electrical-engineering-and-computer-science
hyaicc
·
2015-12-14 22:00
python
算法导论
二叉树的构建及各种遍历方式
以下是Java代码实现:packageme.geed.
algorithms
; importjava.util.LinkedList; importjava.util.Queue; importj
u014738140
·
2015-12-13 17:00
二叉树
二叉树遍历
广度优先遍历
深度优先遍历
非递归实现
[Evolutionary Algorithm] 进化算法简介
进化算法,也被成为是演化算法(evolutionary
algorithms
,简称EAs),它不是一个具体的算法,而是一个“算法簇”。
Poll的笔记
·
2015-12-13 14:00
深度学习 - Deep Learning Tutorials
相关信息可以查看BriefintroductiontoMachineLearningforAI和IntroductiontoDeepLearning
algorithms
.深度学习会
liamQuan
·
2015-12-12 14:00
hdu 1046 Gridland
computerscientistshavebeentryingtofindefficientsolutionstodifferentcomputingproblems.Forsomeofthemefficient
algorithms
arealreadyavailable
wind_2008_06_29
·
2015-12-11 22:00
算法
ACM
HDU
OJ
LeetCode 41 First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldrunin
gx262091291
·
2015-12-10 21:00
Cpp--STL的组成
STL有三大核心部分:容器(Container)、算法(
Algorithms
)、迭代器(Iterator),容器适配器(containeradaptor),函数对象(functor),除此之外还有STL
samkieth
·
2015-12-10 14:00
《算法导论》学习目录
资料现代计算机常用数据结构和算法(算法导论第一版中文版)数据结构与算法:C#语言描述(中文)(清风前辈推荐的书,觉得更适合我现在的情况)算法导论HTML版 算法导论部分习题 Introductionto
Algorithms
·
2015-12-09 11:35
算法导论
《算法导论》
资料现代计算机常用数据结构和算法(算法导论第一版中文版)数据结构与算法:C#语言描述(中文)(清风前辈推荐的书,觉得更适合我现在的情况)算法导论HTML版 算法导论部分习题 Introductionto
Algorithms
·
2015-12-09 11:35
算法导论
recsyscode - implementations of classic
algorithms
of recommender system - Google Project Hosting
recsyscode-implementationsofclassic
algorithms
ofrecommendersystem-GoogleProjectHosting重要更新:svd++和combine
·
2015-12-09 10:43
algorithms
[LeetCode]024-Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmaynotmodifythevaluesinthelist
htx931005
·
2015-12-08 20:00
LeetCode
算法学习之“Big Oh Notation”
一、AsymptoticanalysisSupposeweareconsideringtwo
algorithms
, A and B,forsolvingagivenproblem.Furthermore
Sagittarius_Warrior
·
2015-12-08 10:00
算法
【Leetcode】First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houl
yeqiuzs
·
2015-12-06 21:00
【Leetcode】Majority Element II
majority-element-ii/题目:Givenanintegerarrayofsize n,findallelementsthatappearmorethan ⌊n/3⌋ times.The
algorithms
houldruninlineartimeandinO
yeqiuzs
·
2015-12-06 21:00
ML 基础知识
AcomputerprogramissaidtolearnfromexperienceEwithrespecttosometaskTandsomeperformancemeasureP,ifitsperformanceonT,asmeasuredbyPimproveswithexperienceEML
Algorithms
OverviewSupervisedlearning
看起来很好吃
·
2015-12-06 17:00
K-SVD算法
论文采用OrthogonalMatchingPursuit(OMP)
algorithms
。(2)第二阶段:也是K-SVD与MOD的不同之处,字典D是逐列更新的
qq_18343569
·
2015-12-05 21:00
stanford公开课Machine Learning视频教程By Andrew Ng
you'lllearnaboutsomeofthemostwidelyusedandsuccessfulmachinelearningtechniques.You'llhavetheopportunitytoimplementthese
algorithms
yourself
garfielder007
·
2015-12-05 18:09
stanford
公开课
Machine
Learning
视频教程
Andrew
Ng
机器学习
HDU-5532-Almost Sorted Array【2015长春赛区】
2000MS(Java/Others)MemoryLimit:262144/262144K(Java/Others) ProblemDescriptionWeareallfamiliarwithsorting
algorithms
loy_184548
·
2015-12-05 11:00
dp
HDU-5532
The “in-mapper combining” design pattern for Map/Reduce programming in Java
IntroductionIamreadingabookby(LinandDyer2010).Thisbookisveryinformativeaboutdesigningefficient
algorithms
undertheMap
oywl2008
·
2015-12-03 22:00
浅学设计模式之策略
模式及在android中的使用
(原文:TheStrategyPatterndefinesafamilyof
algorithms
,encapsulateseachone,andmakestheminterchangeable.Strategyletsthealgorithmvaryi
qq_25184739
·
2015-12-02 20:00
三种算法转换色彩灰阶
原文:Three
algorithms
forconvertingcolortograyscale 如何转换成彩***像灰度?
secondriver
·
2015-12-02 17:01
灰阶计算
三种算法转换色彩灰阶
原文:Three
algorithms
forconvertingcolortograyscale 如何转换成彩***像灰度?
secondriver
·
2015-12-02 17:01
灰阶计算
ECS ssh无法登陆,提示fatal: No supported key exchange
algorithms
[preauth]
SSH无法登陆,通过管理终端登陆,查看/var/log/secure日志提示fatal:Nosupportedkeyexchange
algorithms
[preauth]导致该问题的根源是,sshd守护进程不能加载到正确的
广州运维
·
2015-12-02 15:29
ssh
key
Opencv提供的四种滤波器
以下内容的解释来自于《ComputerVision:
Algorithms
andApplications》(机器视觉:算法和应用)的作者RichardSzeliski以及《LearningOpenCV
Keyboard365
·
2015-12-02 15:48
OpenCV
Numerical learning library
/nll/NLLisamulti-platformopensourceprojectentirelywritteninC++.Itsgoalistoproposegenericandefficient
algorithms
formachinelearningandmorespecificallycomputervision.Itisintend
Belial_2010
·
2015-12-01 14:04
编程语言c++
上一页
90
91
92
93
94
95
96
97
下一页
按字母分类:
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
其他