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】Single Number II
single-number-ii/题目:Givenanarrayofintegers,everyelementappears three timesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyo
yeqiuzs
·
2015-12-01 10:00
【Leetcode】Single Number
single-number/题目:Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimpleme
yeqiuzs
·
2015-11-30 22:00
LeetCode(268) Missing Number
Givenanarraycontainingndistinctnumberstakenfrom0,1,2,…,n,findtheonethatismissingfromthearray.Forexample,Givennums=[0,1,3]return2.Note:Your
algorithms
houldruninlinearruntimecomplexity.Couldyouimplemen
fly_yr
·
2015-11-30 13:00
LeetCode
OPEN CASCADE Multiple Variable Function
comAbstract.MultiplevariablefunctionwithgradientandHessianmatrixisveryveryimportinOPENCASCADEoptimization
algorithms
.Inordertounderstandtheseoptimizationalg
opencascade
·
2015-11-29 16:00
OPEN CASCADE Multiple Variable Function
comAbstract.MultiplevariablefunctionwithgradientandHessianmatrixisveryveryimportinOPENCASCADEoptimization
algorithms
.Inordertounderstandtheseoptimizationalg
eryar
·
2015-11-29 16:00
leetcode_First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldrunin
dfb198998
·
2015-11-26 20:00
数据结构与算法:插入排序
前言快被数据结构与算法碾成渣渣了,决定开始补补参考资料:算法导论(有MIT公开课-算法导论)、DataStructuresand
Algorithms
inPython、数据结构与算法 插入排序(insertion-sort
圆滚滚姑娘
·
2015-11-26 19:00
计算机网络---基础题目汇总二
RIP协议基于距离矢量算法(DistanceVector
Algorithms
),使用“跳数”(即metric)来衡量到达目标地址的路由距离。距离就是通往目的站点所需经过的链路数,取值
will130
·
2015-11-26 14:00
网络
HackerRank "The Indian Job"
Thanksto https://github.com/bhajunsingh/programming-challanges/tree/master/hackerrank/
algorithms
/the-indian-jobLessonlearnt
Tonix
·
2015-11-26 08:00
LeetCode 24:Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
geekmanong
·
2015-11-25 23:00
《数据结构与算法》学习之入门篇
,youmustlearnhowtheinformationisarrangedinthememoryofthecomputer.Second,youmustbecomefamiliarwiththe
algorithms
formanipulatingtheinf
Sagittarius_Warrior
·
2015-11-25 09:00
【leetcode】Single Number (java)
SingleNumberGivenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
过客航
·
2015-11-24 10:00
java
LeetCode
Machine Learning week 6 quiz: Advice for Applying Machine Learning
andfindthatithasunacceptablyhigherroronthetestset.Youplotthelearningcurve,andobtainthefigurebelow.Isthe
algorithms
ufferingfromhighbias
garfielder007
·
2015-11-24 09:56
机器学习
Machine Learning week 6 quiz: Advice for Applying Machine Learning
andfindthatithasunacceptablyhigherroronthetestset.Youplotthelearningcurve,andobtainthefigurebelow.Isthe
algorithms
ufferingfromhighbias
GarfieldEr007
·
2015-11-24 09:00
apply
advice
learning
machine
quiz
Book Review of “The practice of programming” (Ⅱ)
ThepracticeofprogrammingChapter2
Algorithms
and DataStructuresSearchingsequentialsearch(linearsearch):
Christen
·
2015-11-22 23:00
LeetCode题解——First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldrunin
u010025211
·
2015-11-22 19:00
LeetCode
array
sort
[0x00 用Python讲解数据结构与算法] 概览
广泛搜索,中文的图书基本上没有,倒是找到两本外文的:ProblemSolvingwith
Algorithms
andD
csulennon
·
2015-11-22 16:00
超像素分割技术发展情况梳理(superpixels segment)
details/8918167感谢原作者超像素分割技术发展情况梳理(SuperpixelSegmentation)Sason@CSDN当前更新日期:2013.06.10一.基于图论的方法(Graph-based
algorithms
svdalv
·
2015-11-21 13:49
超像素论文
c++STL 中的copy函数
所谓变易算法(Mutating
algorithms
)就是一组能够修改容器元素数据的模板函数,可进行序列数据的复制,变换等。我们现在来看看第一个变易算法:元素复制算法copy。
iamxiaoguizi
·
2015-11-20 10:00
[leetcode]Single Number
题目描述如下:Givenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
u012505618
·
2015-11-19 23:00
LeetCode
算法
【Leetcode】Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
hould
yeqiuzs
·
2015-11-18 21:00
[LeetCode]First Missing Positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given [1,2,0] return 3,and [3,4,-1,1] return 2.Your
algorithms
houldrunin
CiaoLiang
·
2015-11-17 11:00
【HDU5559 2015合肥赛区H】【观察找规律 构造】Frog and String 用最多k个字符构造长度为n的m不同回文串的串
Java/Others)TotalSubmission(s):61 AcceptedSubmission(s):20SpecialJudgeProblemDescriptionFrogstudies
algorithms
onstrings.He
snowy_smile
·
2015-11-16 18:00
ACM
HDU
构造
观察找规律
tomcat 报 HD keypair 解决办法
修改JDK_HOME/jre/lib/security/java.security增加如下ECDHEjdk.tls.disabled
Algorithms
=ECDHEhttp://stackoverflow.com
闽味川菜
·
2015-11-16 18:00
并查集(Union-Find)算法介绍
更多的信息可以参考
Algorithms
一书的Section1.5,实际上本文也就是基于它的一篇读后感吧。
slime_kirito
·
2015-11-15 18:00
LeetCode:Range Sum Query 2D -Immutable-矩阵指定区域内的元素和
1、题目名称RangeSumQuery2D(矩阵指定区域内的元素和)2、题目地址https://leetcode.com/problemset/
algorithms
/3、题目内容英文:Givena2Dmatrixmatrix
北风其凉
·
2015-11-15 10:00
LeetCode
矩阵
元素和
#304
聚类算法K-Means, K-Medoids, GMM, Spectral clustering,Ncut .
Clustering
Algorithms
分类1.Partitioningapproach: 建立数据的不同分割,然后用相同标准评价聚类结果。(比如最小化平方误差和)
qq_18343569
·
2015-11-14 11:00
OpenCascade Modeling
Algorithms
Fillets and Chamfers
Modeling
Algorithms
Fillets and Chamfers 造型算法——倒圆与倒角
[email protected]
一、倒圆 Fillet Constructor 1.
·
2015-11-13 22:45
algorithms
OpenCascade Modeling
Algorithms
Boolean Operations
Modeling
Algorithms
Boolean Operations of Opencascade
[email protected]
布尔操作(Boolean Operations)是通过两个形状
·
2015-11-13 22:44
algorithms
Topology Shapes of OpenCascade BRep
理解了拓朴形状的数据结构,就对ModelingData模块有了清晰认识,方便OpenCascade其他模块如Modeling
Algorithms
和Visiualization模块的理解。&nbs
·
2015-11-13 22:42
cascade
并查集算法介绍
更多的信息可以参考
Algorithms
一书的Section 1.5,实际上本文也就是基于它的一篇读后感吧。
·
2015-11-13 22:29
并查集
浅谈算法和数据结构: 十二 无向图相关算法基础
原文: 浅谈算法和数据结构: 十二 无向图相关算法基础 从这篇文章开始介绍图相关的算法,这也是
Algorithms
在线课程第二部分的第一次课程笔记。
·
2015-11-13 22:20
数据结构
编程面试的10大算法概念汇总
编程面试的10大算法概念汇总 嘿,第一次翻译文章,在ProgramCreek看到的,原文章名为Top 10
Algorithms
for Coding Interview, 对于我这个明年即将直奔BAT
·
2015-11-13 22:51
编程
【设计模式】一、 策略模式
(Definea family of
algorithms
,encapsulate each one, andmake them interchangeable. Strategy lets the
·
2015-11-13 21:26
设计模式
策略模式
(Definea family of
algorithms
,encapsulate each one, andmake them interchange
·
2015-11-13 21:01
策略模式
计算机科学中最重要的32个算法zz
计算机科学中最重要的32个算法zz http://www.infoq.com/cn/news/2012/08/32-most-important-
algorithms
&
·
2015-11-13 21:12
计算机
Coremicro Reconfigurable Embedded Smart Sensor Node
A Coremicro Reconfigurable Embedded Smart Sensor Node has the capability of hosting intelligent
algorithms
·
2015-11-13 20:54
config
Algorithms
, Part I by Kevin Wayne, Robert Sedgewick
Welcome to
Algorithms
, Part I 前言 昨天在突然看到了Coursera上Robert Sedgewick讲的
Algorithms
,Part II看了一些,甚是爽快,所以又去注册了
·
2015-11-13 20:09
algorithms
MIT Open Course Materials
OcwWeb/Electrical-Engineering-and-Computer-Science/index.htm 6.046J / 18.410J Introduction to
Algorithms
·
2015-11-13 20:24
open
教程和文章以及电子书籍
Python Problem Solving with
Algorithms
and Data Structures python 数据结构的一本书 廖雪峰小白
·
2015-11-13 20:08
教程
算法精解概述
欢迎访问我的新博客:http://www.milkcu.com/blog/ 原文地址:http://www.milkcu.com/blog/archives/introduction-to-mastering-
algorithms
-with-c.html
·
2015-11-13 20:01
算法
变易算法 - STL算法
欢迎访问我的新博客:http://www.milkcu.com/blog/ 原文地址:http://www.milkcu.com/blog/archives/mutating-
algorithms
.html
·
2015-11-13 19:40
STL
超像素分割技术发展情况梳理(Superpixel Segmentation)--计算机视觉专题3
基于图论的方法(Graph-based
algorithms
): 1. Normalized cuts, 2000. Jianbo Shi and Jitendra Malik.
·
2015-11-13 19:05
super
步步为营 .NET 设计模式学习笔记 三、Strategy(策略模式)
(原文:The Strategy Pattern defines a family of
algorithms
,encapsulates each one,and makes them interchangeable
·
2015-11-13 18:12
strategy
Python和数据结构学习 --- 0
书参考的是<Data Structures and
Algorithms
Using Python>基本是照着来.估计也会把里面的题目做做.
·
2015-11-13 18:55
python
【leetcode】【24】Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
xiaoliucool1314
·
2015-11-13 18:00
java
LeetCode
list
Programming Computer Vision with Python: Tools and
algorithms
for analyzing images
Programming Computer Vision with Python: Tools and
algorithms
for analyzing images: Jan Erik Solem: 9781449316549
·
2015-11-13 18:18
programming
Hierarchical Tree Traversal in Graphics Pipeline Stages
BACKGROUND Many
algorithms
on a graphics processing unit (GPU) may benefit from doing a query in a
·
2015-11-13 17:07
graphics
Marios Hadjieleftheriou/Frequent Items: Evaluation Source Code
Frequent Items: Evaluation Source Code This package provides implementations of various one pass
algorithms
·
2015-11-13 17:33
source
http://www.sorting-
algorithms
.com/
Sorting Algorithm Animations Problem Size: 20 · 30 · 40 · 50 Magnification: 1x · 
·
2015-11-13 17:07
algorithms
上一页
91
92
93
94
95
96
97
98
下一页
按字母分类:
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
其他