码迷,mamicode.com
首页 >  
搜索关键字:algorithms    ( 784个结果
js判断公式中括号是否匹配
http://deejay.iteye.com/blog/1327491functioncheckBracket(algorithms){varbracket=[];varalgorithms=algorithms||'';for(vari=0;i<algorithms.length;i++){if...
分类:Web程序   时间:2015-07-07 12:41:47    阅读次数:201
young tableaus
Young tableaus 这是 Introduction_to_algorithms一个 路学校运动, 我也难倒,互联网没有找到现有的应答。 今天 python 代码贴,供你参考。#! /usr/bin/python""" young tableau m x n matrix"""import ...
分类:其他好文   时间:2015-07-07 09:21:28    阅读次数:142
Binary Tree Traversal Algorithms (二叉树遍历算法)
本文共列出了11个常见的二叉树遍历算法。二叉树的遍历主要有深度优先遍历和广度优先遍历。深度优先遍历包含前序遍历、中序遍历和后序遍历。值得一提的是, 其中的 Morris 算法 可以线性时间不需要额外空间(用户栈或系统栈空间)实现二叉树的前序遍历、中序遍历和后序遍历。关于Morris算法, 可参考ht...
分类:编程语言   时间:2015-07-06 11:41:08    阅读次数:252
GO语言练习:第一个Go语言工程--排序
1、代码2、编译3、运行1、代码框架/home/fengbo/sorter$ tree.├── bin├── pkg├── readme.txt└── src ├── algorithms │ ├── bubblesort │ │ ├── bubblesort.go │ │ ...
分类:编程语言   时间:2015-07-04 15:24:31    阅读次数:162
mcrypt加密以及解密过程
Mcrypt库支持20多种加密算法和8种加密模式,具体可以通过函数mcrypt_list_algorithms()和mcrypt_list_modes()来显示Mcrypt扩展库可以实现加密解密功能,就是既能将明文加密,也可以密文还原。1.PHP加密扩展库Mcrypt安装在标准的PHP安装过程中并没...
分类:其他好文   时间:2015-07-02 17:10:39    阅读次数:157
Functor仿函数
转载声明:本文转自网络,稍加整理以备学习和参考之用。 函数对象/仿函数 提到C++ STL,首先被人想到的是它的三大组件:Containers, Iterators, Algorithms,即容器,迭代器和算法。容器为用户提供了常用的数据结构,算法大多是独立于容器的常用的基本算法,迭代器是由容器提供的一种接口,算法通过迭代器来操控容器。接下来要介绍的是另外的一种组件,函数对象(Functi...
分类:其他好文   时间:2015-07-01 23:45:31    阅读次数:486
RTB撕开黑盒子 Part 1: Datacratic's RTB Algorithms
这篇文章是讨论Datacratic所用的统计和经济理论的一些内容。我们开发了real time bidding算法s。为了实现广告主的目标,我们的算法自动地利用其它广告主的次优策略,并再查看广告的底价。我们想让我们的合作伙伴理解我们用的技术,并且认为它是合理的。“相信黑盒子”的价值观在这我们这里不成...
分类:其他好文   时间:2015-07-01 12:05:23    阅读次数:213
Tree traversal algorithms
Tree traversal algorithms
分类:其他好文   时间:2015-06-27 11:21:16    阅读次数:94
[Algorithms] Graph Traversal (BFS and DFS)
Graph is an important data structure and has many important applications. Moreover, grach traversal is key to many graph algorithms.There are two syst...
分类:其他好文   时间:2015-06-26 23:39:01    阅读次数:160
How to decide on the correct number of clusters?
Determining the number of clusters/segments in hierarchical clustering/segmentation algorithms由于unique函数在这里找矩阵不同元素的时不能有效得到,所以自己编了小程序实现。Matlab codeL:cl...
分类:其他好文   时间:2015-06-25 00:03:48    阅读次数:158
784条   上一页 1 ... 56 57 58 59 60 ... 79 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!