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
算法分析与设计学习笔记
CourseraStandford
Algorithms
:DesignandAnalysis,Part1第一章:1.大数加法的算法改进我们都知道低位数的乘法比高位数的乘法要好算,根据高位数与低位数的关系,
123dhc
·
2020-08-04 18:41
算法设计
Coursera
Python数据结构与算法笔记(2)
problem-solving-with-
algorithms
-and-data-structure-using-python中文版3基本数据结构栈、队列、deques、列表是一类数据的容器,它们数据项之间的顺序由添加或删除的顺序决定
沙漏dan
·
2020-08-04 18:22
数据结构
字符串hash函数(hashCode的生成)
:GeneralPurposeHashFunction
Algorithms
http://www.partow.net/programming/hashfunctions/#top最终结果:1.BKDRHash2
三少GG
·
2020-08-04 18:12
重构C/C++
LeetCode-
Algorithms
-[Mid]146. LRU缓存机制
运用你所掌握的数据结构,设计和实现一个LRU(最近最少使用)缓存机制。它应该支持以下操作:获取数据get和写入数据put。获取数据get(key)-如果关键字(key)存在于缓存中,则获取关键字的值(总是正数),否则返回-1。写入数据put(key,value)-如果关键字已经存在,则变更其数据值;如果关键字不存在,则插入该组「关键字/值」。当缓存容量达到上限时,它应该在写入新数据之前删除最久未使
什么你竟然不会敲代码
·
2020-08-04 15:43
LeetCode-
Algorithms
-[Easy][周赛]1486. 数组异或操作
给你两个整数,n和start。数组nums定义为:nums[i]=start+2*i(下标从0开始)且n==nums.length。请返回nums中所有元素按位异或(XOR)后得到的结果。示例1:输入:n=5,start=0输出:8解释:数组nums为[0,2,4,6,8],其中(0^2^4^6^8)=8。“^”为按位异或XOR运算符。示例2:输入:n=4,start=3输出:8解释:数组nums
什么你竟然不会敲代码
·
2020-08-04 15:43
七种常见经典排序算法
功能:七种常见经典排序算法作者:wikiwen日期:2018年4月20日参考文章:http://yansu.org/2015/09/07/sort-
algorithms
.htmlhttps://zh.wikipedia.org
wikiwen
·
2020-08-04 15:00
编程
ProblemSet of Binary Search
Algorithms
二分的模板:真的很好用,谁用谁知道intbsearch_1(intl,intr){while(l>1;if(check(mid))r=mid;elsel=mid+1;}returnl;}intbsearch_2(intl,intr){while(l>1;if(check(mid))l=mid;elser=mid-1;}returnl;}LeetCode852.PeakIndexinaMountai
To_be_thinking
·
2020-08-04 12:31
try-catch-finally执行例题
例题:package
algorithms
.com.guan.javajicu;publicclassTestDemo{publicstaticStringoutput=””;publicstaticvoidfoo
侣行G_X_N
·
2020-08-04 12:27
C++ 学习笔记:2、3、4、5、7
2.3过程式程序设计原始的程序设计范式是:Decidewhichproceduresyouwant;usethebest
algorithms
youcanfind.2.3.1变量和算术一个声明是一个语句,
weixin_30687811
·
2020-08-04 11:01
【数据结构与算法之美】读书笔记04 -- 数组
前言整理自博客:https://github.com/foreverZ133/Beauty-of-Data-Structure-and-
Algorithms
/issues
咸鱼翻面
·
2020-08-04 11:38
数据结构与算法
Gossip 协议详解
Gossipprotocol在1987年8月由施乐-帕洛阿尔托研究中心发表ACM上的论文《Epidemic
Algorithms
forReplicatedDatabaseMaintenance》中被提出。
yuemuyi
·
2020-08-04 09:24
架构
分布式
Spark之GraphX
此外,GraphX包括的图形越来越多的收集
algorithms
和bui
清风笑丶
·
2020-08-04 06:55
2017ICPC青岛网络赛 Brute Force Sorting
TotalSubmission(s):3375AcceptedSubmission(s):321ProblemDescriptionBeerusneedstosortanarrayofNintegers.
Algorithms
phython96
·
2020-08-04 06:11
ACM-ICPC训练题解
Java算法-------无序数组中的最长连续序列---------leetcode128
findthelengthofthelongestconsecutiveelementssequence.Forexample,Given[100,4,200,1,3,2],Thelongestconsecutiveelementssequenceis[1,2,3,4].Returnitslength:4.Your
algorithms
h
weixin_34399060
·
2020-08-04 05:43
java
Binary Search
BylovroTopCoderMemberBinarysearchisoneofthefundamental
algorithms
incomputerscience.Inordertoexploreit,
touzani
·
2020-08-04 01:54
数据结构与算法
F - Random Sort (18.9.30)(全排问题,取模问题)
StatementsSaeedisteaching
Algorithms
1atDamascusUniversity,hislastlecturewasaboutsorting
algorithms
.Ashomework
chen_zan_yu
·
2020-08-03 23:26
VJ
【LeetCode】三道简单的递归问题
single-numberGivenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
Fireplusplus
·
2020-08-03 21:34
LeetCode
C++
C++
leetcode
树的基本操作 code
packagecom.lifeibigdata.
algorithms
.tree;/***Createdbylifeion16/5/26.
菜鸟兄弟
·
2020-08-03 19:07
Java程序无法连接提供的SFTP地址,报错:Session.connect: java.io.IOException: End of IO Stream Read
$ssh-VOpenSSH_7.9p1,OpenSSL1.1.111Sep2018(openssh版本7.6p1)的/etc/ssh/sshd_config添加:Kex
Algorithms
+diffie-hellman-group1
好记忆不如烂笔头abc
·
2020-08-03 18:20
linux
利用栈实现简单算术表达式求值
代码利用栈来实现算术表达式的求值功能,仅用于举例说明栈的用例,没有考虑运算符的优先级,并且要求表达式的各个部分必须用空格分隔:packagecom.mycode.
algorithms
.stack;importjava.util.HashMap
0x07c00
·
2020-08-03 17:46
好书
2.
Algorithms
算法概论短小精悍,别据一格,准经典之作。一个坏消息:同算法导论,该书没有习题答案。好消息:习题很经典,难度也适中,只需花点点时间自己也都能做出来。
chengyongyuan1111
·
2020-08-03 15:03
算法学习
排序算法(Java实现):选择排序法和快速排序法
为了方便扩展,先引入一个抽象的基础类:packagecom.andyidea.
algorithms
;/***排序抽象基础类*@authorAndy.Chen**@param*/publicabstractclassSorter
ai_longyu
·
2020-08-03 14:12
算法代码实现之希尔排序,Java实现
封装成类:packagecom.roc.
algorithms
.sort;/***希尔排序**@authorroc*/publicclassShellSort{//交换数组元素privatestaticvoidswap
陈鹏万里
·
2020-08-03 13:44
算法
《Gans in Action》第一章 对抗神经网络介绍
对抗神经网络介绍ThischaptercoversAnoverviewofGenerativeAdversarialNetworksWhatmakesthisclassofmachinelearning
algorithms
specialSomeoftheexcitingGANap
李乾文
·
2020-08-03 13:40
【机器学习】
#
论文资料
LeetCode(128)-Longest Consecutive Sequence(最长连续序列)
题目:Givenanunsortedarrayofintegers,findthelengthofthelongestconsecutiveelementssequence.Your
algorithms
houldruninO
Fly_Fly_Zhang
·
2020-08-03 12:58
LeetCodeTop100
集合解决最长连续序列问题
Data Structures and
Algorithms
(English) - 7-28 Review of Programming Contest Rules(30 分)
题目链接:点击打开链接题目大意:按照ACM/ICPC的比赛计分规则(解题数+20分钟罚时规则),给定比赛时间、总题数。假设某个人是这样做题的:1.用一定时间通读所有的题,计算出解出每个题目所需的时间,以及如果错了,调试一次所需的时间。2.他一旦开始做某题,不做出来就不换题(一不做二不休)。3.对于每道题,他第一次提交的时间决定了他需要调试的次数。具体地说是这样的:开始1小时(包括1小时整)内提交一
Lux_Sun
·
2020-08-03 12:32
#
ACM
#
PTA
#
DFS
#
排列
tensorflow学习笔记(三十三):ExponentialMovingAverage
ExponentialMovingAverageSometraining
algorithms
,suchasGradientDescentandMomentumoftenbenefitfrommaintainingamovingaverageofvariablesduringoptimization.Usingthemovingaveragesforevaluationsoftenimprovere
ke1th
·
2020-08-03 11:53
tensorflow
tensorflow学习笔记
(译)可视化垃圾收集(GC)算法
blog.geekcome.com/archives/299原文地址:http://spin.atomicobject.com/2014/09/03/visualizing-garbage-collection-
algorithms
YongXMan
·
2020-08-03 09:55
Linux
编程
技术手册
可视化
jvm
内存
内存分配
内存泄露
A Comparison and Evaluation of Multi-View Stereo Reconstruction
Algorithms
以下是这篇文章的主要内容1.这篇文章,首先,调研了目前多视觉立体算法,用一个区别于他们关键属性的分类方法对他们进行比较。然后,描述我们获取高精度真实背景多视觉立体图片数据集和对其进行标定的过程。最后,我们给出对多视觉立体重建算法的比较结果。2.多视觉立体分类法(1)场景描述(Scenerepresentation)物体或场景的几何可以有多种描述方式:像素,水平集,多边形网格,深度图。3D网格:简单
yiranpiaoluo
·
2020-08-03 09:45
论文阅读
2016-Deep Learning Trends @ICLR
CitedfromTombone’sComputerVisionBlogDeepLearning,ComputerVision,andthe
algorithms
thatareshapingthefutureofArtificialIntelligence.Wednesday
xihang_alpha
·
2020-08-03 08:22
综述前瞻
《算法(第4版)》课后练习答案及相关问题解决方案
《算法(第4版)》一书的代码和课后练习的答案我都分享到了我的GitHub上面,地址如下:https://github.com/jimmysuncpt/
Algorithms
如果对您有帮助,觉得还不错,麻烦赏个
孙强 Jimmy
·
2020-08-03 05:12
Java
算法与数据结构
算法
github
路由协议之RIP
RIP协议基于距离矢量算法(DistanceVector
Algorithms
),使用“跳数”(即metric)来衡量到达目标地址的路由距离。这种协议的路由器只关心自己周围的世界,只与
谢公子
·
2020-08-03 03:56
网络安全
CS231n Lecture 15 | Efficient Methods and Hardware for Deep Learning
文章目录Abstract
Algorithms
forEfficientInferencePruning(剪枝)Weightsharing(共享权重)Quantization(量化)LowRankApproximation
困比比
·
2020-08-03 02:00
MachineLearning
DeepLeanring
Py
《AByteofPython3》和ProblemSolvingwith
Algorithms
andDataStructuresusingPython—ProblemSolvingwith
Algorithms
andDataStructureshttp
qq_24392635
·
2020-08-03 02:14
日记
Algorithms
Part 1-Question 1- the number of inversions-逆序数计算算法
defcountInversion(arrayList):iflen(arrayList)==1:return(0,arrayList)halfIndex=int(len(arrayList)/2.0)countA,sortedA=countInversion(arrayList[:halfIndex])countB,sortedB=countInversion(arrayList[halfInd
iteye_9368
·
2020-08-03 00:17
Algorithms
- 最大公约数(greatest common divisor)-欧几里得(Euclid) 算法 及 代码
最大公约数(greatestcommondivisor)-欧几里得(Euclid)算法本文地址:http://blog.csdn.net/caroline_wendy/article/details/17012455最大公约数(欧几里得算法(Euclid'sAlgorithm))是比较经典的算法;主要方法:递归相除,求余数,直至余数为0,返回最后一个除数,即可;这样,最早的两个数,就都包含此除数;
iteye_6551
·
2020-08-03 00:13
开发工具
java
《常见算法和数据结构》元素排序(2)——希尔排序(动画)
元素排序(2)——希尔排序本系列文章主要介绍常用的算法和数据结构的知识,记录的是《
Algorithms
I/II》课程的内容,采用的是“算法(第4版)”这本红宝书作为学习教材的,语言是java。
Vosky
·
2020-08-03 00:35
算法和数据结构
常用算法与数据结构
计算机科学中最重要的32个算法
http://www.infoq.com/cn/news/2012/08/32-most-important-
algorithms
奥地利符号计算研究所(ResearchInstituteforSymbolicComputation
gongfupanda2
·
2020-08-03 00:47
算法
算法
The Most Important
Algorithms
(in CS and Math)
原文转载from:http://www.risc.jku.at/people/ckoutsch/stuff/e_
algorithms
.html1.A*searchalgorithm
Rachel-Zhang
·
2020-08-02 22:45
Data
Structure
ACM
《A brief review of image denoising
algorithms
and beyond》
论文:Abriefreviewofimagedenoising
algorithms
andbeyond(收获不是很大,简单用翻译整理一下,之后方便回顾)摘要硬件和成像系统的最新进展使数码相机无处不在。
6个小石头
·
2020-08-02 21:08
阅读论文
计算机视觉
开放世界游戏中的大地图背后有哪些实现技术?
http://gulu-dev.com/post/2014-11-16-open-world2014-11-16知乎游戏开发游戏设计开放世界27192一、程序技术篇:算法和架构(Programming
Algorithms
Antiflag
·
2020-08-02 21:50
UE4
数据结构与算法分析:第一章:Finding the kth largest number and The four basic rules of recursion
Onewaytosolvethisproblemwouldbetoreadthennumbersintoanarray,sortthearrayindecreasingorderbysomesimple
algorithms
uchasbubblesort
bigsnowstorm
·
2020-08-02 20:07
algorithm
用openssl进行SSL编程
oad所有的SSL算法:OpenSSL_add_ssl_
algorithms
();建立SSL所用的method:SSL_METHOD*meth=SSLv23_method();初始化上下文情景:SSL_CTX
zzhongcy
·
2020-08-02 19:12
SSL
面试中的二叉树问题总结【Java版】
package
Algorithms
.tree;importjava.util.ArrayList;importjava.util.Iterator;importjava.util.LinkedList;
yangcs2009
·
2020-08-02 19:39
数据结构
算法
安全通信系统--OpenSSL服务器和客户端
提供的函数设置算法、证书等,一般步骤都固定了的,初始化流程示意图如下所示:SSL初始化流程图主要代码为:SSL_load_error_strings();/*为打印调试信息作准备*/OpenSSL_add_ssl_
algorithms
weixin_34208283
·
2020-08-02 19:13
OpenSSL 常用函数——SSL/TLS编程
主要函数1、初始化SSL算法库函数IntSSL_Library_init(void);#defineOpenSSL_add_ssl_
algorithms
()SSL_Library_init()#defineSSLeasy_add_ssl_
algorithms
liu_coding
·
2020-08-02 18:23
【转】怎样编程实现SSL连接Gmail的POP3服务器,并查阅邮件
structsockaddr_insa;SSL_CTX*ctx;SSL*ssl;X509*server_cert;char*str;charbuf[4096];SSL_METHOD*meth;SSLeay_add_ssl_
algorithms
hjd03132301
·
2020-08-02 17:48
编程
Sorting
Algorithms
Part1
Inthisarticle,Iwilltalkaboutsomeelementaryandfrequentlyusedsorting
algorithms
.1.BubbleSortThisalgorithmgetsitsnamefromthewaysmallerelements
NoviceSi
·
2020-08-02 17:18
算法
OpenCV之imgproc 模块. 图像处理(1)图像平滑处理 腐蚀与膨胀(Eroding and Dilating) 更多形态学变换 图像金字塔 基本的阈值操作
相关OpenCV函数如下:blurGaussianBlurmedianBlurbilateralFilter原理Note以下原理来源于RichardSzeliski的著作ComputerVision:
Algorithms
andApplications
GarfieldEr007
·
2020-08-02 15:34
OpenCV
The BioID Face Database 人脸数据集
TheBioIDFaceDatabaseTheBioIDFaceDatabasehasbeenrecordedandispublishedtogiveallresearchersworkingintheareaoffacedetectionthepossibilitytocomparethequalityoftheirfacedetection
algorithms
withothers.Itmayb
GarfieldEr007
·
2020-08-02 15:01
Datasets
上一页
41
42
43
44
45
46
47
48
下一页
按字母分类:
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
其他