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
An overview of color constancy
algorithms
论文笔记
最近有个作业要写一份关于Retinex算法的综述,以下是摘抄自【Anoverviewofcolorconstancy
algorithms
】,关于Retinex算法部分的信息。
DianLong_I2
·
2018-11-06 15:15
论文总结
golang中使用json转换结构体
packagemainimport("encoding/json""fmt")typeKeyBasicstruct{UserNamestring`json:"username"`
Algorithms
tring
cyberspecter
·
2018-11-06 14:13
Golang
hashtable基于拉链法的底层原理java实现
package
Algorithms
;publicclassSeparateChainingHashST{publicstaticvoidmain(String[]args){//TODOAuto-generatedmethodstub
nicalaos
·
2018-11-06 11:03
java
数据挖掘算法集锦和学习教程
Algorithms
ThesearesomeMachineLearningandDataMining
algorithms
andmodelshelpyoutounderstandyourdataandderivemeaningfromit.SupervisedLearningRegressionLinearRegressionOrdinaryLeastSquaresLogisticRegressio
缠禅可禅
·
2018-11-05 22:45
谈天说地
Data Structures and
Algorithms
(English) - 6-17 Shortest Path [4](25 分)
题目链接:点击打开链接题目大意:略。解题思路:注意:因为一开始mi==0导致0+无法到达的点(INF)==INF==dist[i],s.t.num[i]、path[i]误被更新,所以需要再加个判断条件——“Graph->G[S][i]!=INFINITY”,这样也省了再末尾重新更新。AC代码voidShortestDist(MGraphGraph,intdist[],intpath[],Verte
Lux_Sun
·
2018-11-05 10:40
#
ACM
#
PTA
#
图
#
Dijkstra
从头学习大数据 spark 基于内存的分布式计算框架(一)spark 介绍、RDD 原理、spark 开发环境搭建
从头学习大数据spark基于内存的分布式计算框架(一)spark介绍、RDD原理、spark开发环境搭建1.什么SparkSpark是加州大学伯克利分校AMP实验室(
Algorithms
,Machines
大数据01
·
2018-11-02 21:26
A SURVEY OF TEXT CLUSTERING
ALGORITHMS
引言Theproblemofclusteringhasbeenstudiedwidelyinthedatabaseandstatisticsliteratureinthecontextofawidevarietyofdataminingtasks[50,54].Theclusteringproblemisdefinedtobethatoffindinggroupsofsimilarobjectsi
matrices
·
2018-11-01 11:22
9.MySQL优化Nested-Loop Join
Algorithms
介绍MySQL使用嵌套循环算法或其变体在表之间执行连接。Nested-LoopJoinAlgorithmBlockNested-LoopJoinAlgorithm1Nested-LoopJoinAlgorithm简单的Nested-Loop算法意思就是,从第一张表读取一条记录,然后与第二张表的每一行进行循环比对,达成表连接目的,然后再从第一张表读取一条记录与第二张表的每一条进行比对,如此往复,有几
刺青LOVELESS
·
2018-10-31 20:54
MySql
Feeder-Link Outage Prediction
Algorithms
for SDN-based High-Throughput Satellite
标题:基于SDN的高吞吐量卫星系统的馈线链路中断预测算法来源:IEEEICC2016SACSatelliteandSpaceCommunications时间:2016摘要 高吞吐量卫星(HTS)系统的设计建立在智能网关多样性SmartGatewayDiversity(SGD)的概念之上,以便在馈线(所谓馈线就是指纯粹的由电源母线分配出去的配电线路,直接到负荷的负荷线)链路中断的情况下利用网关的空
陳浴巾
·
2018-10-30 18:00
Python 数据结构笔记(1):Python数据结构的性能
目录1、列表List2、Dict字典本系列博客是阅读《ProblemSolvingwith
Algorithms
andDataStructuresusingPython》的笔记,原文链接1、列表List索引和赋值是两个非常常用的操作
oio328Loio
·
2018-10-25 15:20
Python
【Leetcode】first-missing-positive
Givenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given[1,2,0]return3,and[3,4,-1,1]return2.Your
algorithms
houldruninO
潮汐止处
·
2018-10-23 17:26
算法组合优化
图形算法可视化
看过网上这篇文章后,才知道,原来还可以随机生成:MazeGeneration-Visualizing
Algorithms
自己找了些资料参考,试着实现了几种之后,才慢慢领会到其中的一些原理。
luobotang
·
2018-10-23 00:00
数据可视化
算法
前端
Python性能优化的20条建议
1.Pythonhttps://github.com/The
Algorithms
/PythonStar14125用Python实现的所有算法,不过创建者表示这些仅用于演示目的。
小牛学堂
·
2018-10-22 16:27
Data Structures and
Algorithms
(English) - 6-4 Reverse Linked List(20 分)
题目链接:点击打开链接题目大意:略。解题思路:注意:参数传进来的L,和returnL,都是有带头节点的。AC代码//从头节点下一个节点,和再下一个节点开始,把它们的箭头指向反一下即可,最后到了末尾再把原来的尾巴指向头即可ListReverse(ListL){if(!L||!(L->Next)||!(L->Next->Next))returnL;PtrToNodend,p=L->Next->Next
Lux_Sun
·
2018-10-21 11:29
#
ACM
#
PTA
heapq — Heap queue algorithm
heapq—Heapqueue
algorithmS
ourcecode:Lib/heapq.pyThismoduleprovidesanimplementationoftheheapqueuealgorithm
JSerenity
·
2018-10-20 15:24
Python
C++机器学习库--shark
feature-richopen-sourceC++machinelearninglibrary.Itprovidesmethodsforlinearandnonlinearoptimization,kernel-basedlearning
algorithms
Alen.Wang
·
2018-10-19 14:32
机器学习与神经网络
Data Structures and
Algorithms
(English) - 6-2 Two Stacks In One Array(20 分)
题目链接:点击打开链接题目大意:略。解题思路:略。AC代码StackCreateStack(intMaxElements){Stackp=(Stack)malloc(sizeof(structStackRecord));p->Array=(int*)malloc(MaxElements*sizeof(int));p->Top1=-1;p->Top2=MaxElements;p->Capacity=
Lux_Sun
·
2018-10-19 10:35
#
ACM
#
PTA
使用JWT
/107306772、生成TokenpublicStringcreateJWT(Stringid,Stringissuer,Stringsubject,longttlMillis){Signature
Algorithms
ignatureAlgorithm
china574512989
·
2018-10-18 22:49
笔记
贝叶斯思想(三)
(此处我觉得可以理解为复杂的曲线去精确匹配样本分布,但是这种曲线非常复杂,容易过拟合,反而效果不好)比如MacKay在《InformationTheory:InferenceandLearning
Algorithms
Eric_LH
·
2018-10-17 17:49
机器学习
python3 hashlib
importhashlibprint(hashlib.
algorithms
_available)md=hashlib.md5()md.update('howtouse'.encode('utf-8'))
项目技术总监
·
2018-10-17 16:32
python3
hashlib
sha
md5
多标签学习综述
文章目录多标签学习综述(Areviewonmulti-labellearning
algorithms
)2014TKDE(IEEETransactionsonKnowledgeandDataEngineering
hinanmu
·
2018-10-17 11:10
多标签学习
9月份GitHub上最热门的Python项目
1、Pythonhttps://github.com/The
Algorithms
/Python用Python实现的所有算法,不过创建者表示这些仅用于演示目的。
码农职场
·
2018-10-16 15:32
降维方法的优缺点
原文地址:https://elitedatascience.com/dimensionality-reduction-
algorithms
欢迎阅读我们的现代机器学习算法的第2部分。
weixin_30790841
·
2018-10-16 14:00
人工智能
数据结构与算法
Optimization
algorithms
优化算法
1.Mini-batchgradientdescent将训练集拆分成小批量,比如一个小批样例只有1000个训练样例image.png小批量梯度下降,每次只对一个小批样例进行计算mini-batch的大小就等于m这样其实就是批量梯度下降,在这种情况下你的mini-batch只有一个X{1}和Y{1}而它就等于你的整个训练集另一极端情况是把mini-batch的大小设为1,就会得到一种叫随机梯度下降的
Simple_isBeauty
·
2018-10-13 21:46
演化算法基础(一)
MemeticAlgorithm,MA)3.进化多目标优化算法(Multi-ObjectiveEvolutionaryAlgorithm,MOEA)4.参考文献进化算法,也被成为是演化算法(evolutionary
algorithms
daihao1413
·
2018-10-13 11:22
MOEA
用Go写算法:求最小可用自然数
前言前一段时间在reddit上看到有人推广一篇名为GopherCon2018-DemystifyingBinarySearchTree
Algorithms
的博客,博客中列举了传统大学里学习算法的种种弊端
oscarzhao
·
2018-10-13 00:00
golang
算法
sklearn没有实现ID3算法
32277562/how-to-set-up-id3-algorith-in-scikit-learnhttp://scikit-learn.org/stable/modules/tree.html#tree-
algorithms
-id3
Applied Sciences
·
2018-10-06 20:28
机器学习算法
10大机器学习算法速览,带你开启AI之旅
:SunilRay译者:TalkingData张永超原文链接:https://www.analyticsvidhya.com/blog/2017/09/common-machine-learning-
algorithms
城市中迷途小书童
·
2018-10-06 12:53
132.1.001 Union-Find | 并查集
BackupCoursera-
Algorithms
booksiteP.S.iff==ifandonl
Neo007
·
2018-10-05 16:00
书评:《算法之美(
Algorithms
to Live By )》 | Linux 中国
《算法之美》提出的问题是:“我们可以反过来吗”——我们可以通过学习计算机科学解决问题的方式来帮助我们做出日常决定吗?--BrianChristian,TomGriffiths有用的原文链接请访问文末的“原文链接”获得可点击的文内链接、全尺寸原图和相关文章。致谢编译自|https://www.eyrie.org/~eagle/reviews/books/1-62779-037-3.html作者|Br
技术无边
·
2018-10-01 12:56
python实现单链表中删除倒数第K个节点的方法
代码:classLinkedList
Algorithms
(object):def__init__(self):passdefrm_last_kth_node(self,k,linked_list):#删除倒数第
冬日新雨
·
2018-09-28 09:32
《算法设计与分析》第三周作业
16340114题目:CourseSchedule(https://leetcode.com/problems/course-schedule/description/)注:本篇博客中所有图片均来自教科书
Algorithms
Ray0758
·
2018-09-23 22:54
jwt_token的生成与解密
关键代码生成认证token的合法性认证token的合法性扩展importcom.auth0.jwt.
algorithms
.Algorithm;importcom.auth0.jwt.JWT;importcom.auth0
maqingbin8888
·
2018-09-18 11:33
PRML阅读笔记(一)
Thefieldofpatternrecognitionisconcernedwiththeautomaticdiscoveryofregularitiesindatathroughtheuseofcomputer
algorithms
andwiththeuseoftheseregularitiestotakeacti
小屋归
·
2018-09-17 20:54
学习笔记
137. Single Number II 只出现一次的数字II 解法
Givenanon-emptyarrayofintegers,everyelementappearsthreetimesexceptforone,whichappearsexactlyonce.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithou
MaloryVer9
·
2018-09-16 20:54
算法
数据结构与算法(一)——相关概念
引子
Algorithms
+DataStructures=Programs(算法+数据结构=程序)程序设计包括算法,数据结构和程序设计语言三部分.算法是求解问题的过程描述,数据结构是对所要求解问题中的数据的存储和算法策略实现的支持
尘酒
·
2018-09-14 19:38
数据结构与算法
Spark介绍(一)简介
一、Spark简介Spark是加州大学伯克利分校AMP实验室(
Algorithms
,Machines,andPeopleLab)开发的通用内存并行计算框架Spark使用Scala语言进行实现,它是一种面向对象
kxiaozhuk
·
2018-09-14 10:50
技术介绍
Spark介绍和实践
elasticsearch 深入 —— 相关度控制
全文相关的公式或相似算法(similarity
algorithms
)会将多个因素合并起来,为每个文档生成一个相关度评分_sco
gmHappy
·
2018-09-13 13:02
ELK
elasticsearch
算法学习之路(一)——数据抽象
前言本文根据
Algorithms
(《算法》)一书,介绍算法的基础知识,围绕数据抽象,介绍了包括背包、队列和栈三种集合类数据类型的定义以及代码实现,最后讲解了链表的相关定义以及使用链表实现集合类数据类型。
CarlTortoise
·
2018-09-11 01:27
算法笔记
算法(第4版)笔记1
1.Algorithm:methodforsolvingaproblem.Datastructure:methodtostoreinfomation.topicdatastructuresand
algorithms
datatypesstack
xubo的博客
·
2018-09-08 12:17
算法
算法学习(4)——归并排序(递归版)
代码、课程参考:数据结构——浙江大学9.4.1有序子列的归并;9.4.2归并算法;算法可视化:https://www.cs.usfca.edu/~galles/visualization/
Algorithms
.html
Di_Wong
·
2018-09-07 18:56
算法
算法学习(4)——归并排序(递归版)
代码、课程参考:数据结构——浙江大学9.4.1有序子列的归并;9.4.2归并算法;算法可视化:https://www.cs.usfca.edu/~galles/visualization/
Algorithms
.html
Di_Wong
·
2018-09-07 18:56
算法
Dijkstra、Bellman-Ford、SPFA、ASP、Floyd-Warshall 算法分析
本文主要介绍的算法的代码主要来源如下:Dijkstra:
Algorithms
(《算法概论》)SanjoyDasgupta,ChristosPapadimitriou,UmeshVazirani;《算法竞赛入门经典
空白__
·
2018-09-07 13:46
acm
Design and Analysis of
Algorithms
(Divide & Conquer: Convex Hull, Median Finding)
ParadigmGivenaproblemofsizendivideitintosubproblemsofsizen,a≥1,b>1.Solveeachsubproblemrecursively.Combinesolutionsofsubproblemstogettheoverallsolution.T(n)=aT(n/b)+[workformerge]ConvexHullGivennpoints
Da_tianye
·
2018-09-06 20:45
Design and Analysis of
Algorithms
(Interval Scheduling)
Verysimilarproblemscanhavedifferentcomplexity.Recall:P:aclassofproblemssolvableinpolynomialtime.O()forsomeconstantk.NP:aclassofproblemsverifiableinpolynomialtime.HamiltoniancycleinadirectedgraphG(V,E)
Da_tianye
·
2018-09-05 15:23
LeetCode刷题笔记:缺失数字
findtheonethatismissingfromthearray.Example1:Input:[3,0,1]Output:2Example2:Input:[9,6,4,2,3,5,7,0,1]Output:8Note:Your
algorithms
houldruninlinear
RJzz
·
2018-09-04 20:46
LeetCode刷题笔记
LeetCode刷题笔记
DEAP(Distributed Evolutionary
Algorithms
in Python)1.2.2文档(一)
DEAP文档(不准确翻译,用于自学,如若有误请谅解。原链接:https://deap.readthedocs.io/en/master/)DEAP是一个新的用于快速验证和测试新想法的演化计算框架。它致力于直接地构建算法和数据结构的简单化。它可以很好地应用在并行机制中,例如多任务处理和SCOOP(这是啥?)中。下面的文档将会展示许多关键概念以及构建你自己的演化算法时的一些特征。第一步1、总览(从这里
B_Selmy
·
2018-09-03 13:24
Introduction to
Algorithms
(Principles of Algorithm Design)
PrinciplesofAlgorithmDesignWhenyouaretryingtodesignanalgorithmoradatastructure,it’softenhardtoseehowtoaccomplishthetask.Thefollowingtechniquescanoftenbeuseful:Experimentwithexamples.Oneofthemostimport
Da_tianye
·
2018-08-31 15:04
LeetCode-Missing Number
findtheonethatismissingfromthearray.Example1:Input:[3,0,1]Output:2Example2:Input:[9,6,4,2,3,5,7,0,1]Output:8Note:Your
algorithms
houl
BeHelium
·
2018-08-31 10:44
LeetCode
代码面试需要知道的8种数据结构(附面试题及答案链接)
1976年,一个瑞士计算机科学家写一本书《
Algorithms
+DataStructures=Programs》。即:
Fundebug
·
2018-08-27 08:00
数据结构
上一页
73
74
75
76
77
78
79
80
下一页
按字母分类:
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
其他