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
[LeetCode] Longest Consecutive Sequence 求最长连续序列
Givenanunsortedarrayofintegers,findthelengthofthelongestconsecutiveelementssequence.Your
algorithms
houldruninO
Grandyang
·
2015-02-06 01:00
C 算法精介----二叉搜索树-->AVL树->分析与实现
// //Bistree.h //
Algorithms
&Data_structures // //CreatedbyTTcon15-2-4.
liutianshx2012
·
2015-02-04 18:00
C 算法精介----二叉树-->分析与实现
// //BiTree.h //
Algorithms
&Data_structures // //CreatedbyTTcon15-2-3.
liutianshx2012
·
2015-02-04 13:00
41. First Missing Positive Leetcode Python
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given[1,2,0]return3,and[3,4,-1,1]return2.Your
algorithms
houldruninO
hyperbolechi
·
2015-02-03 04:00
LeetCode
python
array
sorting
C算法精解 ->集合->实现和分析
集合的定义和实现,同样也是用了单链表的函数接口,只要认真阅读,肯定能理解// //Set.h //
Algorithms
&Data_structures //
liutianshx2012
·
2015-02-02 19:00
C 算法精介----链表->循环链表
//// Clist.c//
Algorithms
&Data_structures///
liutianshx2012
·
2015-02-02 16:00
C 算法精介----链表->双向链表
下图清晰绘出双向链表的结构:// //DList.c //
Algorithms
&Data_structures // //CreatedbyTTcon15-2-2.
liutianshx2012
·
2015-02-02 14:00
LeetCode --- 24. Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmaynotmodifythe
makuiyu
·
2015-02-01 16:00
LeetCode
C++
链表
leetcode_24_Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
dfb198998
·
2015-02-01 10:00
swap
in
LinkedList
nodes
pairs
编写leetcode测试用例时所用的辅助函数
在做leetcode题目(https://oj.leetcode.com/problemset/
algorithms
/)的时候,我们总要自己写测试用例,常常要生成vector,list,tree
aaa20090987
·
2015-01-31 17:31
C/C++
浅析STL 谓词 + 仿函数 + 函数指针(c)
一:起因(0)提到C++STL,首先被人想到的是它的三大组件:Containers(容器),Iterators(迭代器),
Algorithms
(算法)。
u010700335
·
2015-01-30 20:00
STL
函数指针
谓词
仿函数函数对象
24. Swap Nodes in Pairs Leetcode Python
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmaynotmodifythevaluesinthelist
hyperbolechi
·
2015-01-29 11:00
LeetCode
python
linklist
MapReduce的模式,算法以及用例
本文译自 MapreducePatterns,
Algorithms
,andUseCases在这篇文章里总结了几种网上或者论文中常见的MapReduce模式和算法,并系统化的解释了这些技术的不同之处。
dongzhumao86
·
2015-01-28 21:00
mapreduce
hadoop
大数据
leetcode 24 Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
刘小米
·
2015-01-27 21:00
java
LeetCode
[Leetcode] 22- Generate Parentheses
原题链接:https://oj.leetcode.com/problemset/
algorithms
/这里用递归的方法实现。
leo524891010
·
2015-01-27 15:00
Single Writer Principle
Sure,
algorithms
canbebad,butlet’sassumetheyhaveareasonable BigOnot
散关清渭
·
2015-01-23 17:00
concurrency
Swap Nodes in Pairs Leetcode Python
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmaynotmodifythevaluesinthelist
hyperbolechi
·
2015-01-23 04:00
LeetCode
python
linklist
Single Number II
SingleNumberIIbit-operationReference-Acm之家Givenanarrayofintegers,everyelementappearsthreetimesexceptforone.Findthatsingleone.Note: Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwi
xuanyoumeng
·
2015-01-20 16:00
位操作
Lettcode_137_Single Number II
42877129Givenanarrayofintegers,everyelementappears three timesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearrun
pistolove
·
2015-01-19 19:00
java
LeetCode
算法
Longest Consecutive Sequence Leetcode Python
findthelengthofthelongestconsecutiveelementssequence.Forexample,Given[100,4,200,1,3,2],Thelongestconsecutiveelementssequenceis[1,2,3,4].Returnitslength:4.Your
algorithms
h
hyperbolechi
·
2015-01-19 04:00
LeetCode
python
Graph
[C++]LeetCode: 109 Swap Nodes in Pairs (交换相邻节点位置)
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
cinderella_niu
·
2015-01-18 17:00
LeetCode
list
linked
Machine Learning---Neural Network
上对NeuralNetwork的定义: Inmachinelearning,artificialneuralnetworks(ANNs)areafamilyofstatisticallearning
algorithms
inspiredby
u012736084
·
2015-01-16 23:00
Pattern
NetWork
learning
machine
recognition
Neural
Useful Code
Thispagecollectspublicly-availableresourcesandcodethatareusefulforvisualeffects.GeneralProgramsIrfanviewGIMPOpenCVParaviewImageMattingAlphaMattingEvaluation forbenchmarkingmatting
algorithms
Closed-fo
luckyboy101
·
2015-01-15 08:00
Lettcode_136_Single Number
details/42713315Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimec
pistolove
·
2015-01-14 18:00
java
LeetCode
算法
异或运算
[LeetCode]41.First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldrunin
SunnyYoona
·
2015-01-13 21:00
LeetCode
排序
数组
A Tour of Machine Learning
Algorithms
Afterweunderstandthetypeofmachinelearningproblemweareworkingwith,wecanthinkaboutthetypeofdatatocollectandthetypesofmachinelearning
algorithms
wecantry
necrazy
·
2015-01-13 15:00
Pattern
deep
learning
learning
machine
matching
算法经典书籍推荐
2.
Algorithms
算法
hustyangju
·
2015-01-12 10:00
Algorithms
LeetCode - First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldrunin
yuanhsh
·
2015-01-10 00:00
[LeetCode]162 Find Peak Element
https://oj.leetcode.com/problemset/
algorithms
/http://siddontang.gitbooks.io/leetcode-solution/content
furuijie8679
·
2015-01-09 16:17
LeetCode
[LeetCode]160 Intersection of Two Linked Lists
https://oj.leetcode.com/problemset/
algorithms
/http://www.cnblogs.com/yuzhangcmu/p/4128794.html/** *
furuijie8679
·
2015-01-09 16:49
LeetCode
[C++]LeetCode: 67 Single Number II
题目:Givenanarrayofintegers,everyelementappears three timesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
cinderella_niu
·
2015-01-04 22:00
LeetCode
bit
manipulation
[C++]LeetCode: 66 Single Number
题目:Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
cinderella_niu
·
2015-01-04 21:00
LeetCode
table
hash
bit
manipulation
Single Number
Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
havedream_one
·
2015-01-04 16:00
LeetCode
number
single
PHP 标准AES加密算法类
分享一个标准PHP的AES加密算法类,其中mcrypt_get_block_size('rijndael-128','ecb');,如果在不明白原理的情况下比较容易搞错,可以通过mcrypt_list_
algorithms
D_Eristin
·
2014-12-31 16:00
LeetCode(41) First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given[1,2,0]return3,and[3,4,-1,1]return2.Your
algorithms
houldruninO
feliciafay
·
2014-12-31 08:00
LeetCode
sorting
【LeetCode】First Missing Positive 解题报告
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldrunin
ljiabin
·
2014-12-28 21:00
LeetCode
array
first
Missing
Positi
Strategy策略模式
(原文:The Strategy Pattern defines a family of
algorithms
,encapsulates each one,and makes them interchangeable
·
2014-12-25 18:00
strategy
策略模式(java)
(原文:TheStrategyPatterndefinesafamilyof
algorithms
,encapsulateseachone,andmakestheminterchangeable.Strategyletsthealgorithmv
chenleixing
·
2014-12-25 16:00
java
设计模式
策略
策略模式
java模式
数据加密-怎样确定RSA Key 的长度
rsa_key_length.shtmlWhenyoucreateanRSAkeypair,youspecifyakeylengthinbits,asgenerallyyouwouldforother
algorithms
.Specifically
yuxiaohui78
·
2014-12-25 00:00
mahout入门指南之基于mahout的itembased算法
Mahout已实现的算法(单机版和分布式版)https://mahout.apache.org/users/basics/
algorithms
.html 大多数情况下,我们只是调用maho
linger2012liu
·
2014-12-22 23:00
hadoop
Mahout
协同过滤
Itembased
LeetCode:Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
hnuzengchao
·
2014-12-21 22:00
LeetCode
单链表
LeetCode:Single Number II
Givenanarrayofintegers,everyelementappears three timesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
hnuzengchao
·
2014-12-20 20:00
LeetCode
二进制
C1803错误
有一个名为
algorithms
的标准C++库头文件,它没有.h文件扩展名。通过此i
leecmin
·
2014-12-18 20:07
[LeetCode]Single Number II
Givenanarrayofintegers,everyelementappears three timesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
u014691362
·
2014-12-17 21:00
java
LeetCode
位运算
笔记:上过的关于Coursera上的一些课程
No1:Bioinformatic
algorithms
(Part1)https://github.com/jschendel/bioinformatics-
algorithms
-courseraNo2:
H349117102
·
2014-12-17 15:00
notes
LeetCode:Single Number
Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
hnuzengchao
·
2014-12-17 10:00
LeetCode
Numbers
《Go语言编程》【2.7 完整示例】的错误
今天看《Go语言编程》再次发现了两处错误,一处是目录名称
algorithms
,根据上下文推测,目录名应当是没有最后一个字幕s的algorithm,因为最后main主程序import导入包时、调用排序函数时
董松
·
2014-12-11 21:00
Go
Go语言编程
《Go语言编程》【2.7 完整示例】的错误
今天看《Go语言编程》再次发现了两处错误,一处是目录名称
algorithms
,根据上下文推测,目录名应当是没有最后一个字幕s的algorithm,因为最后main主程序import导入包时、调用排序函数时
dongsong1117
·
2014-12-11 20:25
Go
Go语言编程
《Go语言编程》【2.7 完整示例】的错误
今天看《Go语言编程》再次发现了两处错误,一处是目录名称
algorithms
,根据上下文推测,目录名应当是没有最后一个字幕s的algorithm,因为最后main主程序import导入包时、调用排序函数时
dongsong1117
·
2014-12-11 20:25
Go
Go语言编程
HEVC算法和体系结构:资源获取和章节安排
从今天开始,将陆续更新自己学习总结的最新版HEVC著作《HighEfficiencyVideoCoding(Hevc):
Algorithms
andArchitectures》中的相关知识点,原书英文电子版需要的可在下面评论留言
FRD2009041510
·
2014-12-10 15:00
HEVC
算法和体系结构
上一页
105
106
107
108
109
110
111
112
下一页
按字母分类:
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
其他