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:
[Learning Algorithm] - Sorting
ThesedaysIamreadingthebook.ThisweekIhavelearntseveralsorting
algorithms
inthisbookandimplementedsomeofthem.Thementioned
algorithms
aremergesort
TrevorD
·
2020-07-05 17:25
Single Number II -- 找出数组中唯一出现一次的数,其它数都出现了三次
=>给定一个数组,除了一个元素,其它每个元素都出现了三次,找出这个出现一次的元素Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementit
gordon1986
·
2020-07-05 16:38
leetcode实现每周一题
关于采样信号应该是相关性的3点原因
本文观点摘自---Spectrum-Sensing
Algorithms
forCognitiveRadioBasedonStatisticalCovariancessectionIIB段1信号是过采样的信号满足奈奎斯特采样定理
szcsun5
·
2020-07-05 14:06
通信论文
Binary Search - 二分查找
之前趁当当网大折扣的时候,和朋友一起凑数,买了一本《grokking
algorithms
》。最近有空翻开,发现里面的讲解深入显出,很适合算法小白。而且书中配合着漫画一起讲解很是有趣。
caoqi95
·
2020-07-05 12:59
Codeforces Round #599 (Div. 1) C. Sum Balance(图+dp)
题目链接:https://codeforces.com/contest/1242/problem/C具体做法参照题解,记录一个子集当中dp的方法https://cp-
algorithms
.com/algebra
_bibibibi
·
2020-07-05 12:31
codeforces
Matlab神经网络十讲(3): Deep Networks / CNN
Deeplearningisabranchofmachinelearningthatteachescomputerstodowhatcomesnaturallytohumans:learnfromexperience.Machinelearning
algorithms
usecomputationalmethodsto
沈子恒
·
2020-07-05 11:45
神经网络
深度学习
matlab
买卖一只股票
Algorithm框架创建一个最简单的回测程序,从2018-06-29之后的12个交易日之内,购买MPC股票,在价格合适的时候卖出2第一步,创建algorithm程序选择页面上方的Research->
Algorithms
csfreebird
·
2020-07-05 11:52
Quantopian
GA(遗传算法) 解决TSP问题 Python实现
第一问最小生成树问题使用了Prim算法基于Python3.7实现最小生成树(Prim算法)2.即TSP问题、这里用到GA解决找了别人的GA板子,改动之后成型清华大学【数据挖掘:进化计算】进化算法Evolutionary
Algorithms
断然Juvenile
·
2020-07-05 10:06
Python:从入门到放弃
算法
英文原版新书下载:AI for Data Science - 2018.Pdf
极速入门教程-目录图片.png下载:AIforDataScience-2018.PdfMastertheapproachesandprinciplesofArtificialIntelligence(AI)
algorithms
python测试开发_AI命理
·
2020-07-05 03:51
Lecture Note - 北大 - 算法设计与分析 Design and Analysis of
Algorithms
- Wanling Qu
第一周作业Question7下表给出5组f(n)和g(n)函数12345f(n)2n3+3n50n+logn50nlognlognn!g(n)100n2+2n+10010n+loglogn10nloglognlog2n5n使得f(n)=O(g(n))成立的组号(从小到大排列)是:24Question8使得f(n)=Ω(g(n))成立的组号从小到大排列是(格式同上一题):1235Question10
mandalaqaz
·
2020-07-05 02:28
Mathematics
python XOR运算
.SingleNumberGivenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemorysolution
pandamax
·
2020-07-05 01:34
编程类
机器学习-树模型理论(GDBT,xgboost,lightBoost,随机森林)
机器学习-树模型理论(GDBT,xgboost,lightBoost,随机森林)treebasedensemble
algorithms
主要介绍以下几种ensemble的分类器(treebased
algorithms
onemorepoint
·
2020-07-05 01:42
《算法》读书笔记(三)
我把自己做的课后题都传到了github上,网址是:https://github.com/songyizhang/
Algorithms
Exercises/tree/master/src/songyi,期待与各位交流的那一天
mpw小白
·
2020-07-05 00:35
读书笔记
给大家推荐一些数学书
Hitchhiker'sGuidetotheGalaxy;信息学界则有Knuth的TheArtofComputerProgramming,或是每个搞OI/ACM的都看过或者听说过的Introductionto
Algorithms
matrix67
·
2020-07-05 00:10
Brain
Storm
numbers
methods
matrix
出版
blog
游戏
LeetCode-
Algorithms
-[Mid]面试题31. 栈的压入、弹出序列
面试题31.栈的压入、弹出序列publicbooleanvalidateStackSequences(int[]pushed,int[]popped){Stackstack=newStack();intj=0,n=pushed.length,m=popped.length;for(inti=0;i
什么你竟然不会敲代码
·
2020-07-04 23:27
LeetCode
LeetCode-
Algorithms
-[Easy][双百解法]1351. 统计有序矩阵中的负数
给你一个m*n的矩阵grid,矩阵中的元素无论是按行还是按列,都以非递增顺序排列。请你统计并返回grid中负数的数目。示例1:输入:grid=[[4,3,2,-1],[3,2,1,-1],[1,1,-1,-2],[-1,-1,-2,-3]]输出:8解释:矩阵中共有8个负数。示例2:输入:grid=[[3,2],[1,0]]输出:0示例3:输入:grid=[[1,-1],[-1,-1]]输出:3示例
什么你竟然不会敲代码
·
2020-07-04 23:55
C++设计模式——策略模式(Strategy Pattern)
幼儿园的学霸目录文章目录C++设计模式——策略模式(StrategyPattern)目录定义实现示例传统的策略模式实现使用函数指针实现策略模式工厂模式和策略模式对比总结参考资料定义Defineafamilyof
algorithms
leonardohaig
·
2020-07-04 21:19
C++
Machine Learning Project Checklist
MachineLearningProjectChecklistFrametheproblemandlookatthebigpicture.Getthedata.Explorethedatatogaininsights.PreparethedatatobetterexposetheunderlyingdatapatternstoMachineLearning
algorithms
.Exploreman
Sylvester_
·
2020-07-04 20:14
机器学习
LeetCode Single Number I & II 都符合两个问题额外要求的 通用解法 与 思考过程
SingleNumberGivenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
靖心
·
2020-07-04 20:37
Algorithm算法
算法和数据结构C++实现
leetcode
Single
Number
Single
Number
II
两个问题的通用算法
符合额外要求
Tutorials on topics in machine learning
AssessingandComparingClassification
Algorithms
CrossValidationAndrewMooreTheManyFacesofROCAnalysisinMachineLearningPeterA.Flach
iteye_14216
·
2020-07-04 18:52
《 常见算法与数据结构》符号表ST(1)——基本介绍
符号表(SymbolTable)本系列文章主要介绍常用的算法和数据结构的知识,记录的是《
Algorithms
I/II》课程的内容,采用的是“算法(第4版)”这本红宝书作为学习教材的,语言是java。
Vosky
·
2020-07-04 17:52
算法和数据结构
常用算法与数据结构
《 常见算法与数据结构》平衡查找树(1)—— 2-3查找树(附动画)
本系列文章主要介绍常用的算法和数据结构的知识,记录的是《
Algorithms
I/II》课程的内容,采用的是“算法(第4版)”这本红宝书作为学习教材的,语言是java。这本书的名气我不用多说吧?
Vosky
·
2020-07-04 17:52
算法和数据结构
常用算法与数据结构
算法引论:一种创造性方法(书)
原书名:Introductionto
Algorithms
:ACreativeApproach原出版社:AddisonWesley/Pearson作者:(美)UdiManber译者:黄林鹏谢瑾奎陆首博丛书名
goxigo
·
2020-07-04 16:59
[Leetcode] Implement strStr()与 KMP算法
haystack一个字符串pattern,记为needle找出needle在haystack中的匹配解决方法参见http://web.stanford.edu/class/cs97si/10-string-
algorithms
.pdf
github_17356137
·
2020-07-04 16:30
string
matching
Leetcode
pattern
recognition
离线轻量级大数据平台Spark之单机部署及Java开发
1、Spark平台基本介绍Spark由加州大学伯克利分校AMP实验室(
Algorithms
,Machines,andPeopleLab)开发,可用来构建大型的、低延迟的数据分析应用程序。
fjssharpsword
·
2020-07-04 15:33
Big
data
Hadoop专栏
室内定位综述
2016.7.201.ContributedReviewSource-localization
algorithms
andapplicationsusingtimeofarrivalmeasurements
某日暮光
·
2020-07-04 15:53
室内定位
Algorithms
- Floyd-Warshall
《啊哈!算法》第6章第1节,Floyd-Warshall算法求最短路径的Swift实现。问题4个城市之间有若干条单向公路,求任意两个城市之间的最短路程。也称为“多源最短路径问题”。解决依次计算通过城市1~4中转时的路程,与已知的最短路程比较。/*:二维矩阵表示地点之间的关系*纵向表示出发点1~n*横向表示到达点1~n*坐标系e[0][1]表示从1到2的距离为2,索引值先读纵向后读横向*inf表示无
su3
·
2020-07-04 14:28
设计模式实战应用之一:策略模式
Gof把策略模式归类到对象行为型模式,《设计模式:可复用面向对象软件的基础》对策略模式做出了明确的定义:“Defineafamilyof
algorithms
,encapsulateeachone,andmaketheminterchangeable.Strategyletsthealgorithmvaryindependentlyfromclien
Defonds
·
2020-07-04 14:42
性能优化
设计模式
DV算法和LS路由算法的特点和区别(计算机网络)
路由算法可分为distancevector(DV)algorithm和link_state(LS)
algorithms
两种。LS算法和DV算法,这两种算法各有特点,分述如下。1、工作原
不爱吃鱼的猫丶
·
2020-07-04 12:20
计算机网络
算法
路由器
网络
每天学习一个设计模式(二十一):行为型之策略模式
其定义如下:Defineafamilyof
algorithms
,encapsulateeachone,andmaketheminterchangeable.
${简简单单}
·
2020-07-04 11:55
设计模式
【资源大全】.NET资源大全中文版(Awesome最新版)
算法与数据结构(
Algorithms
andDatastructures)应用程序接口(API)应用程序框架(ApplicationFrameworks)模板引擎(ApplicationTemplates
a688977544
·
2020-07-04 10:31
A Review on Generative Adversarial Networks:
Algorithms
, Theory and Applications
论文地址:https://arxiv.org/pdf/2001.06937.pdf近年来,生成对抗网络(GAN)是一个热门的研究课题。2014年至今,人们对GAN进行了广泛的研究,并提出了大量算法。但是,很少有全面的研究来解释不同GAN变体之间的联系以及它们演变的方式。在本文中,我们尝试从算法、理论和应用的角度对多种GAN方法进行综述。首先,我们详细介绍了大多数GAN算法的研究动机、数学表征和架构
Norstc
·
2020-07-04 10:46
Artificial
Intelligence
Distiller:量化算法
Quantization
Algorithms
量化算法注意:对于任何需要量化感知训练的以下方法,请参阅这里,了解如何使用Distiller的机制调用它。
Yan_Joy
·
2020-07-04 09:58
机器学习
pytorch
python
设计模式-策略模式(Strategy Pattern)
Defineafamilyof
algorithms
,encapsulateeachone,andmaketheminterchangeable(定义一组算法,将每个算法都封装起来,并且使它们之间可以互换
境里婆娑
·
2020-07-04 08:03
设计模式
麻省理工学院《算法导论》(MIT - Introduction to
Algorithms
) 视频教学下载地址
ed2k://|file|%5BMIT%E7%AE%97%E6%B3%95%E5%AF%BC%E8%AE%BA.%E8%A7%86%E9%A2%91%5D.1.ocw-6.046-07sep2005-220k.mp4|175006724|bfc576d79ef02417b64235680425ecc1|h=qn3fzicbevragyniohnbf6i77kq5pvze|/ed2k://|file
lt3
·
2020-07-04 08:49
算法
Merge Sort Linked List
Givenasingly-linkedlist,whereeachnodecontainsanintegervalue,sortitinascendingorder.Themergesort
algorithms
houldbeusedtosolvethisproblem.Examplesnull
GakkiLove
·
2020-07-04 07:00
《算法
Algorithms
第四版》2-3查找树学习小结
序言二叉查找树在插入N个元素后,可能会构造出一个深度为N的查找树,这样的话二叉查找树的查找性能就变得和顺序查找无异了,都是线性级的。为了维持树的平衡性,我们引入了2-3查找树,对于二叉查找树来说,每个结点只允许有一个键和两个链接,而2-3查找树我们允许一个节点有两个键和三个链接;左链接依然链接的比根节点小的节点,中链接则连接的是介于根结点两个键之间的的节点,右链接依然链接的是比根结点两个键都大的节
我从大数据中找个零
·
2020-07-04 07:19
《算法第四版》学习小结
基于C#的排列和组合算法
usingSystem;usingSystem.Collections.Generic;namespace
Algorithms
{publicclassPermutationAndCombination{
Miracle_Lee
·
2020-07-04 07:54
C#基础
栈、队列iOS实现方案-纸牌游戏 小猫钓鱼
////main.m//
Algorithms
////Createdbyyukion2017/3/25.//Copyright©2017年kang.yu.sh.Allrightsreserved.
oceanfish
·
2020-07-04 06:44
LeetCode-268:Missing Number(寻找缺失数字)
QuestionGivenanarraycontainingndistinctnumberstakenfrom0,1,2,…,n,findtheonethatismissingfromthearray.Forexample:Givennums=[0,1,3]return2.Note:Your
algorithms
houldruninlinearruntimecomplexity.Couldyouim
大树先生的博客
·
2020-07-04 06:20
LeetCode刷题
LeetCode
刷题
LS和DV路由协议的分析与比较
路由算法可分为distancevector(DV)algorithm和link_state(LS)
algorithms
两种。LS算法和DV算法,这两种算法各有特点,分述如下。1、工作原理的不同。
HNSD983704669
·
2020-07-04 05:22
网络
Introduction and scope (Artificial Intelligence)
Algorithms
enabledbyconstraintsexposedbyrepresentationsthatsupportmodelstargetedatthinking,perception,
长安一片月噢
·
2020-07-04 05:22
Design and Analysis of
Algorithms
(B-Trees)
B-TreesB-Treesaretreedatastructuresthatstoresorteddata.B-TreescanbeseenasageneralizationofBinarySearchTreeswherenodescanhavemorethanonekey/valueandmorethantwochildren.SimilartoBSTs,theysupportsearch,i
长安一片月噢
·
2020-07-04 05:22
Design and Analysis of
Algorithms
(Divide & Conquer: FFT)
PolynomialoperationsandrepresentationsApolynomialA(x)canbewritteninthefollowingform:ThedegreeofAisn-1;OperationsonpolynomialsEvaluation:GivenapolynomialA(x)andanumberx0,computeA(x0).ThiscanbedoneinO(n
长安一片月噢
·
2020-07-04 05:22
Introduction to
Algorithms
(Table Doubling, Karp-Rabin)
HowLargeshouldTablebe?wantm=Θ(n)atalltimesIdeaStartsmall(constant)andgrow(orshrink)atnecessaryRehashingTogroworshrinktablehashfunctionmustchangemustrebuildhashtablefromscratchΘ(n+m)time=Θ(n),ifm=Θ(n)H
长安一片月噢
·
2020-07-04 05:22
DotNet 资源大全中文版(Awesome最新版)
算法与数据结构(
Algorithms
andDatastructures)Algorithmia-.NET3.5及更高版本的算法和数据结构库。
weixin_34219944
·
2020-07-04 03:28
(2011)构架师之路-闭眼设计系列-第一篇:IM后台构架
转载地址:http://hi.baidu.com/
algorithms
/blog/item/a17909d1bfc3712f9a5027c0.htmlIM(即时通讯)系统(如QQ、MSN、飞信等),至少分为
vba_2001
·
2020-07-04 02:16
互联网&云
im
服务器
负载均衡
存储
网络
数据库
快速排序(Java实现)
封装成类:packagecom.roc.
algorithms
.sort;/***快速排序**@authorimroc*/publicclassQuickSort{publicstaticvoidsort
imroc
·
2020-07-04 02:54
VI-Big O
gaoxiangnumber1Welcometomygithub:https://github.com/gaoxiangnumber1BigOtimeisthelanguageandmetricweusetodescribetheefficiencyof
algorithms
.TimeComplexityBig
gaoxiangnumber1
·
2020-07-04 00:19
程序员面试金典-第6版
Python 哈希查找及哈希表的实现
墙裂建议阅读:Problem-Solving-with-
Algorithms
-and-Data-Structures-Using-Python5.5.Hashing为什么提出哈希查找python中lis
西檬饭
·
2020-07-02 16:55
数据结构和算法
上一页
52
53
54
55
56
57
58
59
下一页
按字母分类:
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
其他