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:
OPENCV学习------Opencv库中各种图像平滑处理函数分析
图像平滑处理的原理以下原理来源于RichardSzeliski的著作 ComputerVision:
Algorithms
andApplications 以及 LearningOpenCV平滑 也称 模糊
676401088
·
2014-10-12 17:00
LeetCode_First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given[1,2,0]return3,and[3,4,-1,1]return2.Your
algorithms
houldruninO
loveRooney
·
2014-10-06 18:00
LeetCode
Cloud Rendering& Client Rendering
Intraditionalsolutionofmedicalimageprocessing,theworkstationplaysthemostimportantrolewhereallofthe
algorithms
onmedicalimagesareperformedlocallybyitsCPU
OrNot-2012
·
2014-10-01 09:00
OpenSSl-RSA(公私钥制作,加解密,签名)
SigningdatawiththeRSA
algorithmS
tep1.Createprivate/publickeypair(optional)openssl genrsa -out private.pem
_Mr_Computer_
·
2014-09-30 10:15
rsa
encrypt
decrypt
Superpixel整理
基于梯度下降的方法(Gradientdescentbased
algorithms
):1.Watershed,1991.LucVincentandPierreSoille.Watershedsindigitalspaces
Vision_Learning
·
2014-09-28 23:44
Paper_Reading
推荐!可视化垃圾回收算法
英文原文:http://spin.atomicobject.com/2014/09/03/visualizing-garbage-collection-
algorithms
/大部分开发者都认为自动垃圾回收器是理所当然的
·
2014-09-28 10:00
算法
垃圾回收
可视化
编程艺术第十六~第二十章:全排列/跳台阶/奇偶调序,及一致性Hash算法
故常常关注个人所建的
Algorithms
1-14群内朋友关于笔试,面试,宣讲会,offer,薪资的讨论以及在群内发布的各种笔/面试题,常感言道:咱们这群人之前已经在学校受够了学校的那种应试教育,如今出来找工作又得东奔西走
bluehawksky
·
2014-09-26 09:00
数据结构
算法
Python 数据结构与算法
ProblemSolvingwith
Algorithms
andDataStructuresDataStructuresand
Algorithms
UsingPythonDataStructuresand
Algorithms
withObject-OrientedDesignPatternsinPythonDataStructuresand
Algorithms
inPythonPythonAlgorith
MtrS
·
2014-09-24 08:00
从输入流随机取数
Selectarandomnumberfromstream,withO(1)spaceReservoirSampling 从输入流随机取数Reservoirsampling isafamilyofrandomized
algorithms
forrandomlychoosing
jiyanfeng1
·
2014-09-22 09:00
Single Number 【leetcode】1分钟解题系类
Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
eclipse_c
·
2014-09-21 22:00
LeetCode
迭代阈值缩减算法(Iterative Shrinkage-Thresholding Method)
参考文献:YangAY,SastrySS,GaneshA,etal.Fastℓ1-minimization
algorithms
andanapplicationinrobustfacerecognition
yhdzw
·
2014-09-21 11:00
EE8054 Semiconductor Memory Testing
Chapter1:IntroductionChapter2:BasicsofMemories&VLSITestingChapter3:FunctionalFaultModelsandTest
Algorithms
RyaneLuo
·
2014-09-18 18:00
调查:map在clear之后并没有释放内存
ms-manual.htmlhttp://manyhappy163.blog.163.com/blog/static/16447683120105174149969/http://hi.baidu.com/
algorithms
so true
·
2014-09-18 14:00
【LeetCode】【Python题解】Single NumberII
Givenanarrayofintegers,everyelementappears three timesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
u011613729
·
2014-09-15 23:00
LeetCode
Algorithm
python
遍历
First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given[1,2,0]return3,and[3,4,-1,1]return2.Your
algorithms
houldruninO
chencheng126
·
2014-09-15 15:00
LaTeX/
Algorithms
伪代码
转自:http://hustsxh.is-programmer.com/posts/38801.htmlalgorithmic和algorithmicx介绍下algorithmic和algorithmicx,这两个包很像,很多命令都是一样的,只是algorithmic的命令都是大写,algorithmicx的命令都是首字母大写,其他小写(EndFor两个大写)。下面是algorithmic的基本命
qq1987924
·
2014-09-14 22:00
Algorithm
latex
Leetcode-SingleNumber
Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
猪刚烈
·
2014-09-12 16:00
LeetCode
测试
Java学习笔记
SingleNumber
Leetcode-SingleNumberII
Givenanarrayofintegers,everyelementappears three timesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
猪刚烈
·
2014-09-12 16:00
java
LeetCode
Java学习笔记
II
SingleNumber
Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmaynotmodifythevaluesinthelist
chencheng126
·
2014-09-11 19:00
javascript 算法
转自:http://www.codeceo.com/article/javascript-9-sort-
algorithms
.html笔试面试经常涉及各种算法,本文简要介绍常用的一些算法,并用JavaScript
aaron_zhao_
·
2014-09-11 15:36
并查集(Union-Find)算法介绍
更多的信息可以参考
Algorithms
一书的Section1.5,实际上本文也就是基于它的一篇读后感吧。
akunainiannian
·
2014-09-10 19:00
数据结构
算法
Single Number II
Givenanarrayofintegers,everyelementappears three timesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
ahero_happy
·
2014-09-10 13:00
What are the best talks/lectures related to big data/
algorithms
/machine learning?
from:quoraFranckDernoncourt, PhDstudentinAI@MIT435 upvotesby ChrisHammerschmidt, HelenFlynn, FahiraAfzal, (more)Herearethe100mostpopularMachineLearningtalksat http://VideoLectures.Net(October22,2012)(
zhang11wu4
·
2014-09-10 05:00
First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given[1,2,0]return3,and[3,4,-1,1]return2.Your
algorithms
houldruninO
huangynn
·
2014-09-09 10:00
LeetCode
LeetCode-Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houldus
xin_jmail
·
2014-09-07 10:00
LeetCode
LeetCode-First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldr
xin_jmail
·
2014-09-06 11:00
LeetCode
(译)可视化垃圾收集(GC)算法
blog.geekcome.com/archives/299原文地址:http://spin.atomicobject.com/2014/09/03/visualizing-garbage-collection-
algorithms
yming0221
·
2014-09-05 23:00
jvm
内存
内存泄露
内存分配
可视化
【索引】String
Algorithms
::Exercises: Beginner
AOAPCI:BeginningAlgorithmContests--TrainingGuide(RujiaLiu)Chapter3.DataStructures::String
Algorithms
::
u011328934
·
2014-09-05 22:00
【索引】String
Algorithms
::Examples
AOAPCI:BeginningAlgorithmContests--TrainingGuide(RujiaLiu)Chapter3.DataStructures::String
Algorithms
::
u011328934
·
2014-09-05 22:00
LeetCode-Single Number II
single-number-ii/Givenanarrayofintegers,everyelementappears three timesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyoui
xin_jmail
·
2014-09-05 10:00
LeetCode
LeetCode-Single Number
single-number/Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplement
xin_jmail
·
2014-09-05 10:00
LeetCode
Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
ayst123
·
2014-09-05 10:00
LeetCode
聚类算法K-Means, K-Medoids, GMM, Spectral clustering,Ncut
Clustering
Algorithms
分类1.Partitioningapproach:建立数据的不同分割,然后用相同标准评价聚类结果。(比如最小化平方误差和)典型算法
zhaoluffy
·
2014-09-04 20:12
opencv
博客
clustering
算法
统计学
机器学习
聚类算法K-Means, K-Medoids, GMM, Spectral clustering,Ncut
Clustering
Algorithms
分类1.Partitioningapproach: 建立数据的不同分割,然后用相同标准评价聚类结果。(比如最小化平方误差和)
a1429331875
·
2014-09-04 20:00
算法
博客
opencv
clustering
统计学
Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
u014691362
·
2014-09-04 14:00
java
LeetCode
Map-Reduce编程模型gif图片解释
原文地址5-
algorithms
-widely-industry/http://en.docsity.com/news/
algorithms
/5-
algorithms
-widely-industry/
无奈的初弦
·
2014-09-04 08:00
【索引】String
Algorithms
AOAPCI:BeginningAlgorithmContests--TrainingGuide(RujiaLiu)Chapter3.DataStructures::String
Algorithms
ExamplesExamples
u011328934
·
2014-09-02 22:00
Single Number
Givenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
chencheng126
·
2014-09-01 14:00
并查集---partition函数使用
更多的信息可以参考
Algorithms
一书的Section1.5,实际上本文也就是基于它的一篇读后感吧。
nongfu_spring
·
2014-09-01 11:00
常见哈希函数
1.RS 从Robert Sedgwicks的
Algorithms
in C一书中得到了。我(原文作者)已经添加了一些简单的优化的算法,以加快其散列过程。
清风傲剑
·
2014-08-30 17:00
[LeetCode]Single Number
从些简单的开始~LOLGivenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwith
myself9711
·
2014-08-30 05:00
LeetCode
python
[收藏]教程和文章以及电子书籍
PythonProblemSolvingwith
Algorithms
andDataStructures python数据结构的一本书廖雪峰小白python教程 比较基础的教程整理的一些python
lzz957748332
·
2014-08-28 13:00
下载
资料
python教程
lua教程
mongo教程
LeetCode 24 Longest Consecutive Sequence
findthelengthofthelongestconsecutiveelementssequence.Forexample,Given[100,4,200,1,3,2],Thelongestconsecutiveelementssequenceis[1,2,3,4].Returnitslength:4.Your
algorithms
h
ustc_summer
·
2014-08-27 15:00
LeetCode
hash
Longest Consecutive Sequence
findthelengthofthelongestconsecutiveelementssequence.Forexample,Given[100,4,200,1,3,2],Thelongestconsecutiveelementssequenceis[1,2,3,4].Returnitslength:4.Your
algorithms
h
chencheng126
·
2014-08-26 10:00
LeetCode 15 Single Number II
Givenanarrayofintegers,everyelementappearsthreetimesexceptforone.Findthatsingleone.NOTE:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
ustc_summer
·
2014-08-25 22:00
位运算
LeetCode
C++技术问题总结-第6篇 STL迭代器相关
STL的中心思想在于:将数据容器(containers)和算法(
algorithms
)分开,彼此独立设计,最后再以一贴胶着剂将它们撮合在一起。迭代器便起这个作用。
segen_jaa
·
2014-08-25 17:00
【索引】Chapter 3. Data Structures
TrainingGuide(RujiaLiu)Chapter3.DataStructuresFundamentalDataStructuresMaintainingIntervalDataString
Algorithms
BinarySearchTrees
u011328934
·
2014-08-23 14:00
刷题
SingleNumberGivenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
张大华
·
2014-08-22 23:00
STL Algorithm的介绍(1)
原文地址:http://www.cplusplus.com/reference/algorithm/libraryStandardTemplateLibrary:
Algorithms
Theheader
guang_jing
·
2014-08-19 23:00
STL
C++11
希尔排序
package com.victor.sort.
algorithms
; import java.util.ArrayList; import com.victor.sort.seeds.*; /**
黑妹妹牙膏
·
2014-08-19 17:00
java
希尔排序
排序算法
上一页
109
110
111
112
113
114
115
116
下一页
按字母分类:
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
其他