码迷,mamicode.com
首页 >  
搜索关键字:algorithms    ( 784个结果
【每天一题】LeetCode 26. 删除排序数组中的重复项
开源地址: "https://github.com/jiauzhang/algorithms" 题目描述 示例 解题思路 示例代码 c++ class Solution { public: int removeDuplicates(vector& nums) { if (nums.size() ...
分类:编程语言   时间:2019-10-10 17:25:27    阅读次数:140
【每天一题】LeetCode 0020. 有效的括号
开源地址: "https://github.com/jiauzhang/algorithms" 题目 示例 解题思路 示例代码 c++ class Solution { public: bool isValid(string s) { if (s.size() == 0) return true; ...
分类:其他好文   时间:2019-10-09 19:35:40    阅读次数:49
analysis of algorithms
1. 2. binary search (sorted array) 给定查找对象,array,以及最大最小的范围;将查找对象与middle作比较,进而改变最大最小的范围,然后调用递归 时间复杂度的计算要考虑最坏的情况,本题中最坏的情况类比一条面包每天吃一半几天吃完的问题,时间复杂度为log以2为底 ...
分类:其他好文   时间:2019-10-03 18:27:11    阅读次数:75
POJ-3974-Palindrome(马拉车)
链接: http://poj.org/problem?id=3974 题意: Andy the smart computer science student was attending an algorithms class when the professor asked the students ...
分类:其他好文   时间:2019-09-28 23:36:29    阅读次数:84
COMP3506/7505
COMP3506/7505 Homework Task 410 marks totalOverviewThe goal of this problem set is to understand how to apply the algorithms and data structuresthat h ...
分类:其他好文   时间:2019-09-28 20:16:30    阅读次数:95
C++Primer 5th Chap10 Generic Algorithms(未完)
大多数算法定义在头文件algorithm中,在头文件numeric中定义了数值泛型算法。 以find算法为例:在容器的两个迭代器指定的范围内遍历,查找特定值。 1 int val=44; 2 auto result=find(ivec.begin(),ivec.end(),val); 3 cout< ...
分类:编程语言   时间:2019-09-20 14:07:09    阅读次数:114
综述:Recent Advances in Features Extraction and Description Algorithms: A Comprehensive Survey
翻译 特征提取与描述算法的最新进展:综述 摘要 - 计算机视觉是当今信息技术中最活跃的研究领域之一。让机器和机器人能够以视线的速度看到和理解周围的世界,创造出无穷无尽的潜在应用和机会。特征检测和描述算法确实可以被认为是这种机器和机器人眼睛的视网膜。然而,这些算法通常是计算密集型的,这使得它们无法实现 ...
分类:其他好文   时间:2019-09-11 11:46:06    阅读次数:95
拜占庭协议——236357byzantine generals
本文是236357Distributed Algorithms The byzantine generals文档的总结。 fault VS Byzantine fault 一般来说,fault就是指一个replica在运行中因为各种原因发生了错误,无法参与接下来的消息交换。fault之后这个repl ...
分类:其他好文   时间:2019-09-02 19:50:17    阅读次数:166
线性基总结(其实就是我的模板)
想知道线性基直接看大佬的https://blog.sengxian.com/algorithms/linear-basis, 我就是弄下我常用的操作。 定义 学过线代里面的“基向量”,基向量说的就是一组可以表示整个空间的向量。比如在三维空间中一个基向量就是(1,0,0) (0,1,0) (0,0,1 ...
分类:其他好文   时间:2019-08-27 21:12:31    阅读次数:70
CS231n:
Bayesian Hyperparameter Optimization is a whole area of research devoted to coming up with algorithms that try to more efficiently navigate the space ...
分类:其他好文   时间:2019-08-26 10:14:05    阅读次数:110
784条   上一页 1 ... 7 8 9 10 11 ... 79 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!