码迷,mamicode.com
首页 >  
搜索关键字:algorithms    ( 784个结果
[Algorithms] Quicksort algorithm using TypeScript
Quicksort (also called partition sort and pivot sort) is arguably the most used sorting algorithm. It is the one commonly implemented internally in la ...
分类:其他好文   时间:2018-12-18 22:44:44    阅读次数:171
[Algorithms] Tree Data Structure in JavaScript
In a tree, nodes have a single parent node and may have many children nodes. They never have more than one parent nor point to any siblings. The most ...
分类:编程语言   时间:2018-12-18 11:10:08    阅读次数:153
图及其衍生算法(Graphs and graph algorithms)
1. 图的相关概念 树是一种的图,相比树,图更能用来表示现实世界中的的实体,如路线图,网络节点图,课程体系图等,一旦能用图来描述实体,能模拟和解决一些非常复杂的任务。图的相关概念和词汇如下: 顶点vertex:图的节点 边Edge:顶点间的连线,若边具有方向时,组成有向图(directed grap ...
分类:编程语言   时间:2018-12-15 14:54:39    阅读次数:202
优化算法(Optimization algorithms)
1.Mini-batch 梯度下降(Mini-batch gradient descent) batch gradient descent :一次迭代同时处理整个train data Mini-batch gradient descent: 一次迭代处理单一的mini-batch (X{t} ,Y{ ...
分类:编程语言   时间:2018-12-14 15:37:14    阅读次数:243
(剑指Offer)------二进制中1的个数
题目: 输入一个整数,输出该数二进制表示中1的个数。其中负数用补码表示。 思路: 此问题最精彩之处,在于采用 位运算 处理相应的内容 此页面下载后,直接放在浏览器演示,即可成功 git源码页面展示内容:https://github.com/Kristen-D/Algorithms/tree/mast ...
分类:其他好文   时间:2018-12-11 17:22:38    阅读次数:208
时间复杂度分析
https://www.cnblogs.com/gaochundong/p/complexity_of_algorithms.html https://www.zhihu.com/question/21387264 https://blog.csdn.net/zolalad/article/deta ...
分类:其他好文   时间:2018-12-10 18:01:18    阅读次数:187
树及其衍生算法(Trees and tree algorithms)
1,二叉树(Binary tree) 二叉树:每一个节点最多两个子节点,如下图所示: 相关概念:节点Node,路径path,根节点root,边edge,子节点 children,父节点parent,兄弟节点sibling, 子树subtree,叶子节点leaf node, 度level,树高high ...
分类:编程语言   时间:2018-12-08 14:48:18    阅读次数:401
Intersection over Union(IoU) algorithms
IoU算法可用与评估两个多维度数据的相似度,举一个实际应用,做CV,对象检测,我们需要评估模型的识别准确率,不同于二元类问题,普通的评估算法不合适,于是用到了这个算法,这个算法简单易懂,评估效果也不错。 这里主要讨论如何计算并评估两个矩形相交程度。有空再训练一个对象检测器,来试试水。。 第一种对于数 ...
分类:其他好文   时间:2018-12-06 21:21:34    阅读次数:174
算法简介
算法简介 标签(空格分隔): python 介绍 1 程序 = 数据结构 + 算法 2 算法(algorithms)是针对特定的问题,经过精心设计的用来一步步解决该问题从而得到答案的过程。 3 算法是解决问题的步骤的思想的描述,而我们使用计算机语言来实现算法是算法的实现的过程仅仅是为了让计算机能执行 ...
分类:编程语言   时间:2018-12-05 12:28:50    阅读次数:156
Move-to-front(MTF) and Run-lenght encoding(RLE) algorithms
mtf算法: rle算法,暂时没太明白。 ...
分类:其他好文   时间:2018-12-03 19:58:25    阅读次数:194
784条   上一页 1 ... 14 15 16 17 18 ... 79 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!