Andy the smart computer science student was attending an algorithms class when the professor asked the students a simple question, "Can you propose an ...
分类:
其他好文 时间:
2018-04-18 19:03:53
阅读次数:
171
public class SortDemo {
// private static long[] arr = {6,5,2,7,1,8,4,3};
private static long[] arr = {1,2,3,4,5,6,7,8};
private&nb
分类:
编程语言 时间:
2018-04-17 16:50:46
阅读次数:
163
http://acm.hdu.edu.cn/showproblem.php?pid=3949 求n个数的异或和第k小。 参考:https://blog.sengxian.com/algorithms/linear-basis 没了。 +++++++++++++++++++++++++++++++++ ...
分类:
其他好文 时间:
2018-04-12 19:52:21
阅读次数:
173
hashlib python中的hashlib模块用来进行hash或者md5加密,而且这种加密是不可逆的,所以这种算法又被称为摘要算法。其支持Openssl库提供的所有算法,包括md5、sha1、sha224、sha256、sha512等。 常用的属性和方法: algorithms:列出所有加密算法 ...
分类:
编程语言 时间:
2018-04-12 10:30:50
阅读次数:
209
博客转载自:https://cstheory.stackexchange.com/questions/11855/how-do-the-state-of-the-art-pathfinding-algorithms-for-changing-graphs-d-d-l A lot of pathfin ...
分类:
编程语言 时间:
2018-04-10 19:43:25
阅读次数:
265
整个系列课的最后一周讲的是local search paradigm。local search基本上是一种随机算法,大体思路是随机找出一种解法,然后发现如果不够好的话,就微调一下现有的解法,得到一个微调后的解法(neighbor),然后重复这个过程,直到找到足够好甚至是最好的解法为止。 讲道理,这种 ...
分类:
其他好文 时间:
2018-03-15 01:42:00
阅读次数:
172
C通用机器学习Recommender - 一个产品推荐的C语言库,利用了协同过滤.计算机视觉CCV - C-based/Cached/Core Computer Vision Library ,是一个现代化的计算机视觉库。VLFeat - VLFeat 是开源的 computer vision algorithms库, 有 Matlab toolbox。C++计算机视觉OpenCV - 最常用的视
分类:
其他好文 时间:
2018-03-09 10:37:12
阅读次数:
357
前言:腾讯 AI Lab共有12篇论文入选在美国新奥尔良举行的国际人工智能领域顶级学术会议 AAAI 2018。腾讯技术工程官方号独家编译了论文《用随机象限性消极下降算法训练L1范数约束模型》(Training L1-Regularized Models with Orthant-Wise Passive Descent Algorithms),该论文被 AAAI 2018录用为现场陈述论文(Oral Presentation),由腾讯 AI Lab独立完成,作者为王倪剑桥。
分类:
编程语言 时间:
2018-02-24 17:56:47
阅读次数:
206
文章来自:https://blog.sengxian.com/algorithms/virtual-tree 本文由于格式问题,插图需要重新打开来看。 概述 在 OI 比赛中,有这样一类题目:给定一棵树,另有多次询问,每个询问给定一些关键点,需要求这些关键点之间的某些信息。询问数可能很多,但满足所有 ...
分类:
其他好文 时间:
2018-02-21 17:10:57
阅读次数:
139
Optimization algorithms 优化算法以加速训练。 Mini batch gradient descend Batch gradient descend:每一小步梯度下降否需要计算所有的训练样本。很耗时。 Mini batch gradient descend:将训练集分为很多小的 ...
分类:
其他好文 时间:
2018-02-18 13:25:56
阅读次数:
217