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
Missing Number
Givenanarraycontainingndistinctnumberstakenfrom0,1,2,...,n,findtheonethatismissingfromthearray.Forexample,Givennums=[0,1,3]return2.Note:Your
algorithms
houldruninlinearruntimecomplexity.Couldyouimplemen
maoyeqiu
·
2016-01-21 20:00
算法
【LeetCode OJ 136】Single Number
single-number/题目:Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimpleme
xujian_2014
·
2016-01-21 16:00
java
LeetCode
算法复杂度分析
转载自http://www.cnblogs.com/gaochundong/p/complexity_of_
algorithms
.html 为什么要进行算法分析?
mcj8089
·
2016-01-20 15:00
算法
时间复杂度
空间复杂度
算法复杂度
MIT Introduction to
Algorithms
学习笔记(十)
Lecture9:HashingII:TableDoubling,Karp-Rabin 散列表应该有多大? 理想状态:根据需要改变大小.(重散列)Rehashing 增长:散列表长度成倍增长是个好选择. 删除:字符串匹配(StringMatching)SimpleAlgorithm:Karp-RabinAlgorithm: python代码:def karp_rabin(T, P): n
hyaicc
·
2016-01-19 12:00
python
hash
算法导论
巧用位操作符之——^异或运算符
Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementi
pepping798
·
2016-01-19 11:00
异或
位运算符
[Leetcode 136] Single Number
原题:Givenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
wizard_wsq
·
2016-01-17 11:00
LeetCode
算法
异或
[置顶] for_each算法和transform算法区别
http://文章:for_each()算法:点击打开链接transform()算法:点击打开链接 首先,for_each()算法和transform()算法都是属于变动性算法(modifying
algorithms
xiao3404
·
2016-01-16 22:00
C++
区别
STL
transform
for_each
Function Set in OPEN CASCADE
[email protected]
algorithms
libraryprovidesaC++implementationofthemostfrequentlyusedmathematical
algorithms
.Theseinclude
eryar
·
2016-01-16 13:00
【Java】八个常用的排序算法:插入排序、冒泡排序、选择排序、希尔排序 、快速排序、归并排序、堆排序和LST基数排序
希尔排序、快速排序、归并排序、堆排序和LST基数排序,需要的朋友可以参考下本文实现了八个常用的排序算法:插入排序、冒泡排序、选择排序、希尔排序、快速排序、归并排序、堆排序和LST基数排序首先是Eight
Algorithms
.java
不能吃的坚果
·
2016-01-16 13:30
算法
OPEN CASCADE Multiple Variable Function
comAbstract.MultiplevariablefunctionwithgradientandHessianmatrixisveryveryimportinOPENCASCADEoptimization
algorithms
.Inordertounderstandtheseoptimizationalg
eryar
·
2016-01-16 13:00
Algorithms
Ref:LBS新应用:地理围栏技术Ref:地理围栏算法解析Ref:高德LBS开放平台Ref:从B树、B+树、B*树谈到R树Ref:结构之法算法之道Ref:The-Art-Of-Programming-By-JulyRef:《编程之法:面试和算法心得》
Nick.Chung
·
2016-01-15 11:00
Function Set in OPEN CASCADE
[email protected]
algorithms
libraryprovidesaC++implementationofthemostfrequentlyusedmathematical
algorithms
.Theseinclude
opencascade
·
2016-01-13 19:00
Function Set in OPEN CASCADE
[email protected]
algorithms
libraryprovidesaC++implementationofthemostfrequentlyusedmathematical
algorithms
.Theseinclude
eryar
·
2016-01-13 19:00
值得mark的网站~
http://www.typing-lessons.org/题解汇总网站:http://www.acmsearch.com/Leetcode:https://leetcode.com/problemset/
algorithms
如也
·
2016-01-12 16:00
值得mark的网站~
http://www.typing-lessons.org/题解汇总网站:http://www.acmsearch.com/Leetcode:https://leetcode.com/problemset/
algorithms
如也
·
2016-01-12 16:00
MIT Introduction to
Algorithms
学习笔记(九)
Lecture8:HashingI字典一种抽象数据类型(AbstractDataType ,ADT),维护一组元素,每个元素都与一个关键字(KEY)相关,并有以下操作:实现直接寻址表(DirectAccessTable):用KEY为数据下标保存元素。问题:key必须是非负整数。key的范围不能太大。 解决方法:散列表(hashing): 怎么处理碰撞(collision)?连接法:把散列到同一槽
hyaicc
·
2016-01-12 15:00
python
hash
算法导论
无向图相关算法基础
从这篇文章开始介绍图相关的算法,这也是
Algorithms
在线课程第二部分的第一次课程笔记。图的应用很广泛,也有很多非常有用的算法,当然也有很多待解决的问题,根据性质,图可以分为无向图和有向图。
lpx15312
·
2016-01-11 13:00
Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
walkwalkwalk
·
2016-01-10 22:00
Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
walkwalkwalk
·
2016-01-10 22:00
Notes of RDD
MotivationSincenowwiththepreparationonJavaI/O,somefundamentalconcurrencyandparallelcomputingconcepts,somefundamentalconceptsofdistributed
algorithms
andsystems
zhoujiagen
·
2016-01-10 18:00
24. Swap Nodes in Pairs leetcode Python 2016 new Season
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
hyperbolechi
·
2016-01-10 12:00
ibm watson 论文
https://www.quora.com/Did-IBM-publish-papers-describing-the-
algorithms
-used-in-IBM-Watson
guotong1988
·
2016-01-10 11:00
IBM
沃森
算法导论课后习题解析 第一章
算法导论课后习题解析第一章最近开始看算法导论了,但是发现官方给的参考答案只涵盖了一部分的习题,所以把自己做的答案分享一下,如有错误之处尽管指出,希望通过这个过程能与大家共同进步我看的版本是英文第三版(Introductionto
Algorithms
sushauai
·
2016-01-10 11:00
算法直观与对模型的理解(二)
Manymachinelearning
algorithms
makeassumptionsaboutthelinearseparabilityoftheinputdata.感知机模型(perceptron
lanchunhui
·
2016-01-08 09:00
[leetcode] 24. Swap Nodes in Pairs 解题报告
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduse
qq508618087
·
2016-01-07 16:00
LeetCode
链表
First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
一切不期而至
·
2016-01-07 11:00
MIT Introduction to
Algorithms
学习笔记(八)
Lecture7:Linear-TimeSorting 比较排序(ComparisonSorting)堆排序,合并排序都是比较排序,最坏的情况下运行时间为O(nlgn). 比较模型(ComparisonModelofComputation)inputitemsareblackboxes(ADTs)onlysupportcomparisons(;≥;≤)timecost=#comparisons
hyaicc
·
2016-01-06 13:00
python
算法导论
线性排序
【LEETCODE】24-Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmaynotmodifythevaluesinthelist
aliceyangxi1987
·
2016-01-05 16:00
LeetCode
python
hdu5608 几类经典的根号复杂度算法
asaACMer,alwaystakealgorithmcomplexityintoconsiderationwhenprogramming.Today,Iintroduceyousomeelegant
algorithms
ofrootComplex
dna049
·
2016-01-05 09:58
math
【LeetCode】LeetCode——第1题:Two Sum
LeetCode题库网址:https://leetcode.com/problemset/
algorithms
/今天就从第一题开始刷,以后可能不按顺序做。
hujingshuang
·
2016-01-04 17:58
LeetCode
LeedCode
【LeetCode】LeetCode——第1题:Two Sum
LeetCode题库网址:https://leetcode.com/problemset/
algorithms
/今天就从第一题开始刷,以后可能不按顺序做。
hujingshuang
·
2016-01-04 17:00
LeetCode
SUM
hash
Two
BF
双指针
MIT Introduction to
Algorithms
学习笔记(七)
Lecture6:BalancedBinarySearchTreesAVL树 定义:AVL树是自平衡二叉查找树,每个结点的左右子树的高度之差的绝对值(平衡因子)最多为1.平衡(Balance):平衡最坏的情况是每个节点高度差1. AVL插入: 1.insertasinsimpleBST2.workyourwayuptree,restoringAVLproperty(andupdatinghei
hyaicc
·
2016-01-04 13:00
python
算法导论
avl
[leetcode] 229. Majority Element II 解题报告
problems/majority-element-ii/Givenanintegerarrayofsizen,findallelementsthatappearmorethan⌊n/3⌋times.The
algorithms
houldruninlineartimeandinO
小榕流光
·
2016-01-04 11:44
leetcode
array
[leetcode] 229. Majority Element II 解题报告
problems/majority-element-ii/Givenanintegerarrayofsize n,findallelementsthatappearmorethan ⌊n/3⌋ times.The
algorithms
houldruninlineartimeandinO
qq508618087
·
2016-01-04 11:00
LeetCode
array
LeetCode 41:First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldrunin
geekmanong
·
2016-01-04 10:00
[leetcode] 137. Single Number II 解题报告
single-number-ii/Givenanarrayofintegers,everyelementappears three timesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouim
qq508618087
·
2016-01-03 07:00
LeetCode
算法
bit
manipulation
Spark简介
Spark简介Spark是加州大学伯克利分校AMP实验室(
Algorithms
,Machines,andPeopleLab)开发通用内存并行计算框架。
weitao1026
·
2016-01-02 00:00
Spark简介
Titanic: Machine Learning from Disaster——Improving submission
though.Therearethreemainwayswecanimproveit:Useabettermachinelearningalgorithm.Generatebetterfeatures.Combinemultiplemachinelearning
algorithms
.Useabettermachinelearn
zm714981790
·
2016-01-01 00:00
Models and
Algorithms
behind Spark SQL
FollowingaresomeexcerptsfromthepaperSparkSQL:RelationalDataProcessinginSparkbyMichaelArmbrustetal..Thoseexcerptssummarizethemainideaofthepaper.Papername:SparkSQL:RelationalDataProcessinginSparkPaperpu
CallingWisdom
·
2015-12-31 20:00
Tip: An Optimized Formula for Alpha Blending Pixels
摘自:http://www.codeguru.com/cpp/cpp/
algorithms
/general/article.php/c15989/Tip-An-Optimized-Formula-for-Alpha-Blending-Pixels.htmWhenyouhaveaformula
fengyuzaitu
·
2015-12-31 18:27
agg
Tip: An Optimized Formula for Alpha Blending Pixels
摘自:http://www.codeguru.com/cpp/cpp/
algorithms
/general/article.php/c15989/Tip-An-Optimized-Formula-for-Alpha-Blending-Pixels.htmWhenyouhaveaformula
fengyuzaitu
·
2015-12-31 18:27
agg
【LEETCODE】268-Missing Number
Givenanarraycontainingndistinctnumberstakenfrom0,1,2,...,n,findtheonethatismissingfromthearray.Forexample,Givennums=[0,1,3]return2.Note:Your
algorithms
houldruninlinearruntimecomplexity.Couldyouimplemen
aliceyangxi1987
·
2015-12-30 16:00
LeetCode
python
Spark PageRank
考虑出度为0的节点的具体算法可以参考data-intensivetextprocessingwithmapreduce-Graph
Algorithms
数据[plain] viewplaincopyprint
kwu_ganymede
·
2015-12-30 15:00
spark
Ownership of Container Object
本文主要记录我在学习DataStructuresand
Algorithms
withObject-orientedDesignPatternsinC++ 第五章《DatatypesandAbstraction
Sagittarius_Warrior
·
2015-12-30 09:00
[leetcode] 136. Single Number 解题报告
single-number/Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementi
qq508618087
·
2015-12-30 02:00
LeetCode
位运算
算法
[LeetCode]041-First Missing Positive Integer
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given[1,2,0]return3,and[3,4,-1,1]return2.Your
algorithms
houldruninO
htx931005
·
2015-12-29 16:00
LeetCode
速查表:惯用算法和时间复杂度
ThiswebpagecoversthespaceandtimeBig-Ocomplexitiesofcommon
algorithms
usedinComputerScience. Whenprep
EbowTang
·
2015-12-28 22:00
数据结构
算法
面试
【LEETCODE】136-Single Number
Givenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
aliceyangxi1987
·
2015-12-28 15:00
LeetCode
python
MIT Introduction to
Algorithms
学习笔记(六)
Lecture5:SchedulingandBinarySearchTrees 1.跑道预留系统(RunwayReservationSystem)Airportwithsingle(verybusy)runway.“Reservations"forfuturelandings.Whenplanelands,itisremovedfromsetofpendingevents.Reservereqsp
hyaicc
·
2015-12-28 10:00
python
算法导论
BST
Palindrome
DescriptionAndythesmartcomputersciencestudentwasattendingan
algorithms
classwhentheprofessoraskedthestudentsasimplequestion
qq_32126633
·
2015-12-27 20:00
上一页
89
90
91
92
93
94
95
96
下一页
按字母分类:
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
其他