Description Longge is good at mathematics and he likes to think about hard mathematical problems which will be solved by some graceful algorithms. Now ...
分类:
其他好文 时间:
2018-09-13 16:34:58
阅读次数:
266
from: https://jyx.jyu.fi/bitstream/handle/123456789/52275/1/URN%3ANBN%3Afi%3Ajyu-201612125051.pdf 相关文献汇总如下: S1 Eliseev and Gurina (2016) Algorithms fo ...
分类:
Web程序 时间:
2018-09-11 16:07:38
阅读次数:
299
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-09-02 18:52:53
阅读次数:
157
一、引言 "Generic programming is a style of computer programming in which algorithms are written in terms of types to be specified later that are then ins ...
分类:
其他好文 时间:
2018-09-02 02:09:27
阅读次数:
158
个人练习记录 给定一个整数数组和一个目标值,找出数组中和为目标值的两个数。 你可以假设每个输入只对应一种答案,且同样的元素不能被重复利用。 示例: 给定 nums = [2, 7, 11, 15], target = 9 因为 nums[0] + nums[1] = 2 + 7 = 9 所以返回 [ ...
分类:
其他好文 时间:
2018-08-25 18:44:15
阅读次数:
129
原文出处: 不会停的蜗牛 通过本篇文章可以对ML的常用算法有个常识性的认识,没有代码,没有复杂的理论推导,就是图解一下,知道这些算法是什么,它们是怎么应用的,例子主要是分类问题。每个算法都看了好几个视频,挑出讲的最清晰明了有趣的,便于科普。以后有时间再对单个算法做深入地解析。今天的算法如下:决策树随... ...
分类:
编程语言 时间:
2018-08-22 17:09:22
阅读次数:
237
恢复内容开始 STL核心三组件: 容器(Containers):比如 deque、list、vector、map 等。 算法(Algorithms):包括对容器内容执行初始化、排序、搜索和转换等操作。 迭代器(iterators):迭代器用于遍历对象集合的元素。这些集合可能是容器,也可能是容器的子集 ...
分类:
编程语言 时间:
2018-08-22 12:40:37
阅读次数:
172
optimizer是在训练中,运用到的训练方法,最常用的是梯度下降法,去寻找最优loss,tf中常见的optimizer有: 通过Dr.Sebastian Ruder 的论文An overview of gradient descent optimization algorithms来详细了解一些优 ...
分类:
其他好文 时间:
2018-08-21 12:43:53
阅读次数:
517
前言 Algorithms + Data Structures = Programs //N.Wirth 1976 虽然大一大二学了数据结构和很多算法,但是一到用的时候就经常想不起来...,而且明年就要考研了,为了能让自己更系统的掌握,决定要全面的学习一下,为以后打好基础!!! 一、概念 1) 计算 ...
分类:
编程语言 时间:
2018-08-18 22:22:50
阅读次数:
140
construct bst from preorder https://www.geeksforgeeks.org/construct-bst-from-given-preorder-traversa/ https://algorithms.tutorialhorizon.com/construct... ...
分类:
其他好文 时间:
2018-08-17 00:39:44
阅读次数:
116