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
基本机器学习面试问题 --- 理论/算法
机器学习面试题的分类Thefirstreallyhastodowiththe
algorithms
andtheorybehindmachinelearning.You’llhavetoshowanunderstandingofhow
algorithms
comparewithoneanotherandhowtomeasuretheirefficacyandaccuracyintherightway.T
小墨鱼~~
·
2018-08-22 18:17
机器学习
小墨鱼的机器学习之路
Python版本的数据结构书_《用Python解决数据结构与算法问题》
源于经典数据结构作为计算机从业人员的必备基础,Java,c之类的语言有很多这方面的书籍,Python相对较少,其中比较著名的一本problem-solving-with-
algorithms
-and-data-structure-using-python
Datawhale
·
2018-08-22 18:14
python
专题学习
【
Algorithms
】网络流基础篇——Edmond-Karp算法
网络流的相关定义:源点:有n个点,有m条有向边,有一个点很特殊,只出不进,叫做源点。汇点:另一个点也很特殊,只进不出,叫做汇点。容量和流量:每条有向边上有两个量,容量和流量,从i到j的容量通常用c[i,j]表示,流量则通常是f[i,j].通常可以把这些边想象成道路,流量就是这条道路的车流量,容量就是道路可承受的最大的车流量。很显然的,流量<=容量。而对于每个不是源点和汇点的点来说,可以类比的想象成
Ginsn
·
2018-08-19 20:46
算法笔记
leetcode:136. Single Number
SingleNumberDescriptionGivenanon-emptyarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingext
A乡野郎中
·
2018-08-18 13:25
求最长回文子串的长度
中心扩展法示例-摘自https://blog.csdn.net/u013309870/article/details/70742315:package
algorithms
;publicclassPalindro
扎克begod
·
2018-08-14 19:09
HackerRank
Spark及其生态圈
其生态系统也称为BDAS,力图在算法(
Algorithms
)、机器(Machines)和人(People)三者之间通过大规模集成来展现大数据应用的一个开源平台。
Anbang713
·
2018-08-11 11:13
大数据/Spark/Spark
Core
【
Algorithms
】动态规划之区间DP
概论所谓区间DP,从名字也可以看出与区间是密不可分的,也就是通过动态规划求得一段区间上最优解的算法,它的主要思想就是先在小区间进行DP得到最优解,然后再利用小区间的最优解合并求大区间的最优解。一般算法格式区间DP的算法格式比较固定,一般由数组dp[i][j]来表示在区间[i,j]内的最优解(具体由题目定义),然后由一个整形k(iusingnamespacestd;intdp[101][101];i
Ginsn
·
2018-08-10 15:40
算法笔记
LeetCode-24:Swap Nodes in Pairs(两两交换链表中的节点) -- Medium
swapeverytwoadjacentnodesandreturnitshead.例子:Example1:Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Note:-Your
algorithms
houlduseonlyconstantextraspace
大树先生的博客
·
2018-08-07 10:27
LeetCode
栈
链表翻转
LeetCode刷题
LeetCode
刷题
P2P 网络核心技术:Gossip 协议
Gossipprotocol最早是在1987年发表在ACM上的论文《Epidemic
Algorithms
forRepl
juniway
·
2018-08-06 11:29
亚像素数值极值检测算法总结
本文尝试总结几种常用的一维离散数据极值检测方法,几个算法主要来自论文《AComparisonof
Algorithms
forSubpixelPeakDetection》,加上自己的理解和推导。
shine-lee
·
2018-08-04 17:00
深入浅出学AI:第二章 机器学习一览
按照算法类型分类1.回归算法(Regression)线性回归(LinearRegressionorSGDRegression)逻辑回归(LogisticRegression)2.聚类算法(Clustering
Algorithms
devin_zh
·
2018-08-03 17:37
【C++后台开发面试】STL六大组件(一)
containers、Iterators或Functionobject接口的一种组件Algorithm(算法)各种基本算法如sort、search…等Iterator(迭代器)连接containers和
algorithms
Functionobject
shiluoxuan
·
2018-08-03 10:19
【FPGA17】EvaluatingFast
Algorithms
forConvolutionalNeuralNetworksonFPGAs
算法如图,比较直观。一、硬件架构设计需要解决如下问题:memorybandwidth。存储读取数据功耗和速度称为瓶颈,速度与conv硬件处理部分不匹配。所以文中很老套的方法,通过linebuffer来复用每个tile交叠的部分(垂直和水平都有交叠的部分)。1、整体架构所有数据(inputfeaturemap,filter)都存在外部存储上。有多通道(M)的inputfeaturemap,lineb
Mys_GoldenRetriever
·
2018-08-02 15:52
一文看懂所有梯度下降优化算法理论
梯度下降优化算法综述 该文翻译自Anoverviewofgradientdescentoptimization
algorithms
。
搞视觉的张小凡
·
2018-07-31 21:52
深度学习训练通用知识
迭代局部搜索(Iterated local search)探幽
它是一种近似算法(Approximate
algorithms
)。局部搜索算法是从爬山
dengfaheng
·
2018-07-30 12:50
C/C++
数据结构
算法
迭代局部搜索(Iterated local search)探幽
它是一种近似算法(Approximate
algorithms
)。局部搜索算法是从爬山
dengfaheng
·
2018-07-30 12:50
C/C++
数据结构
算法
POJ - 3974 Palindrome 最长的回文子串 3种不同的方法 字符串hash/Manacher算法
Andythesmartcomputersciencestudentwasattendingan
algorithms
classwhentheprofessoraskedthestudentsasimplequestion
深海沧澜夜未央
·
2018-07-30 10:42
ACM_字符串
POJ
ACM_hash
Out of Sorts II
eepinganeyeonlongtermcareerpossibilitiesbeyondthefarm,Bessiethecowhasstartedlearning
algorithms
fromvariouson-linecodingwebsites.Herfavoritealgorithmthusfaris"bubblesort
To-
·
2018-07-23 17:29
思维
7----23---
基础题
1.算法和数据结构介绍
在正确的地方使用算法和数据结构2、什么是算法code=
Algorithms
+Datastructures
Algorithms
:查找(search)、排序(sort)Datastructures:数组(array
听丶飞鸟说
·
2018-07-23 10:50
算法
数据结构
算法与数据结构
LOAM study notes
LOAMstudynotespaperreadingThispaperiswritedbyPHDJizhangandProfSanjivSingh.Paperproposeanewwaytosolve3DlidarSLAMproblemwithlow-driftandrealtime.Inmyview,thispapermainlycombinetwo
algorithms
.Onealgorithm
狼逍豪
·
2018-07-22 17:02
学习笔记
gnss-sdr代码解读(3)
Windows10这篇是接着上一篇的,但是没有必然联系,上一篇地址:https://mp.csdn.net/postedit/809058801、top_block在所有的信号处理模块(如gnss-sdr/src/
algorithms
平林陌陌如烟织
·
2018-07-22 00:25
VC++
GNSS
2018-07-18 《Graph Attention Networks》阅读笔记
DepartmentofComputerScienceandTechnology;CentredeVisi´operComputador,UAB;MontrealInstituteforLearning
Algorithms
hzyido
·
2018-07-19 00:30
2018-07-18 《Graph Attention Networks》阅读笔记
DepartmentofComputerScienceandTechnology;CentredeVisi´operComputador,UAB;MontrealInstituteforLearning
Algorithms
hzyido
·
2018-07-19 00:30
支撑现代存储系统的算法
阅读更多原文地址:
Algorithms
BehindModernStorageSystems原文作者:AlexPetrov读优化B-Tree和写优化LSM-Tree的不同用途作者:AlexPetrov随着应用程序处理的数据量不断增长
aoyouzi
·
2018-07-18 09:00
支撑现代存储系统的算法
深度学习第一讲:梯度下降算法
主要引自:Anoverviewofgradientdescentoptimization
algorithms
梯度下降主要的三种形式:1.批梯度下降是在整个数据集上计算损失函数关于参数,然后想着梯度相反的方向更新参数
Vivianyzw
·
2018-07-17 15:30
深度学习
小白笔记-------------------------------------------------(leetcode:24. Swap Nodes in Pairs)
swapeverytwoadjacentnodesandreturnitshead.Example:Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Note:Your
algorithms
houlduseonlyconstantextraspace.Youmaynotmodifythevaluesinthelis
Aaron92
·
2018-07-16 11:10
算法设计
人体姿态估计(Human Pose Estimation)文献综述
一、研究背景维基百科对人体姿态估计的定义如下:Articulatedbodyposeestimationincomputervisionisthestudyof
algorithms
andsystemsthatrecovertheposeofanarticulatedbody
BockSong
·
2018-07-13 20:57
计算机视觉
深度学习
目标检测(Object Detection)入门概要
ObjectionDetectionTasksMethods
Algorithms
RegionProposalSelectiveSearchEdgeBoxesR-CNNSPP-NetFastR-CNNFasterR-CNNSSDYOLOreferences
hyfine_
·
2018-07-12 11:32
论文研读
SHA256 的C语言实现
SHA256的CCode代码实现主要依照的这个git仓库crypto-
algorithms
,向大家推荐,里面实现了各种加密算法。
随煜而安
·
2018-07-07 18:17
探索比特币源码
C++标准库与内核分析第三讲(六大部件源码分析)
Algorithms
如果需要知道容器的某一些性质,则iterators必须进行回答,如果iterators没办法回答,则编译器
物理小乾乾
·
2018-07-05 19:44
C++
推荐系统
GroupLens所提出的推荐系统就是目前基于用户的协同过滤推荐算法(user-basedcollaborationfiltering
algorithms
)。在此之后
Joenyye
·
2018-07-03 16:02
应用
Java并发:CAS、及CAS中ABA问题解决方案
2、非阻塞算法(nonblocking
algorithms
):一个线程的失败或者挂起不应该影响其他线程的失败或挂起的算法。(1)非阻塞算法简介:https://www.ibm
缘自天方
·
2018-07-01 16:11
技术
最长连续序列O(n)解法,Python
Leetcode上的一道习题:Givenanunsortedarrayofintegers,findthelengthofthelongestconsecutiveelementssequence.Your
algorithms
houldruninO
Chip_Wan
·
2018-06-27 16:59
最长连续序列O(n)解法,Python
Leetcode上的一道习题:Givenanunsortedarrayofintegers,findthelengthofthelongestconsecutiveelementssequence.Your
algorithms
houldruninO
Chip_Wan
·
2018-06-27 16:59
算法学习之路和程序员(技术)学习必读书籍
原文链接:http://lucida.me/blog/on-learning-
algorithms
/转算法学习之路和程序员(技术)学习必读书籍2015年05月26日09:46:56阅读数:11154我的算法学习之路原文链接
NockinOnHeavensDoor
·
2018-06-24 19:26
面试
转载大法好
一种基于边缘的模版匹配算法
www.codeproject.com/Articles/99457/Edge-Based-Template-Matching著名机器视觉软件Halcon的开发人员出版的一本书MachineVision
Algorithms
andApplications
e1ki0lp
·
2018-06-22 10:59
软件
C#
算法
一种基于边缘的模版匹配算法
www.codeproject.com/Articles/99457/Edge-Based-Template-Matching著名机器视觉软件Halcon的开发人员出版的一本书MachineVision
Algorithms
andApplications
e1ki0lp
·
2018-06-22 00:00
软件
C#
算法
Golang 数据结构:图
参考:golang-data-structure-graph前言新坑最近在校事情不多,趁着还记得就开了个新坑
algorithms
,把常用数据结构和算法总结了一下。
wuYin
·
2018-06-22 00:00
golang
数据结构
图
STL六大组建-----初始
STL六大组建:1.容器(Containers)-各种数据结构(vectorliststring等)2.算法(
Algorithms
)-基本常见算法(sortsearchcopy等)3.迭代器(Iterator
我叫平常心
·
2018-06-21 21:10
STL六大组建
C++
C
++
并行矩阵乘法——Cannon算法的原理实现以及性能评测
源码:https://github.com/Cloveryww/MPI-parallel-
algorithms
/tree/master/cannon欢迎Star!!!
Cloveryww
·
2018-06-18 23:45
parallel
algorithm
5月份GitHub上最热门的JavaScript项目
1javascript-
algorithms
https://github.com/trekhleb/javascript-
algorithms
Star16722javascript-
algorithms
IT派
·
2018-06-18 07:40
CV算法:立体照片(Stereo)
参考资料:Lecture08:IntroductiontoStereoLecture09:Stereo
Algorithms
立体视觉通过多个摄像头同时拍出来的照片算出深度投影(眼镜/摄像头是怎么拍照的)为什么需要多个摄像头
抬头挺胸才算活着
·
2018-06-15 14:00
嵌入式AES加密实现汇总
fs000x/tiny-AES-c/issues/1)2.Tiny-AESissue中汇总的较小实现https://github.com/kokke/tiny-AES-c/issues/173.crypto-
algorithms
fs000x
·
2018-06-15 11:19
增量式在线学习:对最先进的算法进行回顾和比较
翻译论文:IncrementalOn-lineLearning:AReviewandComparisonofStateoftheArt
Algorithms
作者:ViktorLosing,BarbaraHammer
木呆呆瓶子
·
2018-06-14 08:41
增量学习
网易公开课-MIT麻省理工学院《算法导论》 学习笔记(1)
网易云课堂上该课程的网站为http://open.163.com/special/opencourse/
algorithms
.html。
大羚羊
·
2018-06-12 22:13
算法
Python hashlib模块用法实例分析
常用的属性和方法:
algorithms
:列出所有加密算法('md5'
breezey
·
2018-06-12 09:53
Spark
1、Spark起源:Spark是加州大学伯克利分校AMP实验室(
Algorithms
,Machines,andPeopleLab)开发通用内存并行计算框架。
BOUBOU1
·
2018-06-08 21:39
大数据与云计算
强化学习资料汇总
Algorithms
forReinforcementLearning.CsabaSzepesvári.20
Vic时代
·
2018-06-06 00:00
人工智能
几种算法比较
https://blog.csdn.net/h3243212/article/details/51345445#%E5%86%99%E5%9C%A8%E5%89%8D%E9%9D%A2几种常见排序算法标签:
algorithms
Dzq_Boyka
·
2018-06-04 10:50
算法
128. Longest Consecutive Sequence
hard,直接上题目吧:Givenanunsortedarrayofintegers,findthelengthofthelongestconsecutiveelementssequence.Your
algorithms
houldruninO
Ares-T
·
2018-06-02 14:17
c++算法
个人
上一页
74
75
76
77
78
79
80
81
下一页
按字母分类:
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
其他