E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
Algorithms:
Error: initial value of reference to non const must be lvalue 原因以及解决方法
static int greatest_common_divisor(int &a, int &b); 如下调用方式报错: Assert::AreEqual(6, Cpp
Algorithms
·
2015-11-08 14:21
reference
2012总结
今年把两本数据结构(本科用的金远平版以及清华严蔚敏版)又过了一遍,复习了Sanjoy的《
algorithms
》,还把师兄推荐的李文新《程序设计导引及在线实践
·
2015-11-08 13:22
2012
[LeetCode] Single Number
Givenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
u011331383
·
2015-11-08 13:00
基于物品的协同过滤推荐算法——读“Item-Based Collaborative Filtering Recommendation
Algorithms
” .
ssh/id_rsa.pub
[email protected]
基于物品的协同过滤推荐算法——读“Item-Based Collaborative Filtering Recommendation
Algorithms
·
2015-11-08 13:41
algorithms
算法精解:C语言描述
《算法精解:C语言描述》基本信息原书名:Mastering
Algorithms
with C作者: Kyle Loudon [作译者介绍]译者: 肖翔 陈舸丛书名: O’Reilly精品图书系列出版社
·
2015-11-08 10:02
C语言
Writing Efficient String Functions in C#
These building blocks can be used to write more complex
algorithms
for handling string data.
·
2015-11-08 10:31
functions
计算机科学类书籍
目录 1 前言 2 Mathematics (数学) 3 Data Structures &
Algorithms
(数据结构、算法) 4 Compiler (编译原理) 5 Operating
·
2015-11-08 09:56
计算机
策略模式
(原文:The Strategy Pattern defines a family of
algorithms
,encapsulates each one,and makes them interchangeable
·
2015-11-08 09:22
策略模式
leetcode- Single Number
Givenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
thoresa
·
2015-11-07 23:00
leetcode-Missing Number
distinctnumberstakenfrom 0,1,2,...,n,findtheonethatismissingfromthearray.Forexample,Given nums = [0,1,3] return 2.Note:Your
algorithms
houldruninlinearruntimecomplexity.Couldyou
thoresa
·
2015-11-07 22:00
Algorithms
(Java) Bags,Queues,and Stacks(1)
前言 许多基础数据类型都和对象的集合有关。具体来说,数据类型的值就是一组对象的集合,所有操作都是关于添加,删除或是访问集合中的对象。接下来,介绍三种数据类型,背包,队列,栈。语言是表达的载体,所以不可避免在表达算法时,依赖于语言的一些特性。 正文介绍两种表示对象集合的方式,即数组和链表。两种都非常基础,常常被称为顺序存储和链式存储。下面我们先介绍数组形式。 背包:是一种不支持删除元素的集合数
丶G_C
·
2015-11-07 18:00
Algorithms
4th - 1.1 Basic Programming Model - CREATIVE PROBLEMS
欢迎交流 1.1.26 public class TestApp { public static void main(String[] args) { int a = StdIn.readInt(); int b = StdIn.readInt(); int c = StdIn.readInt();
·
2015-11-07 15:44
programming
Algorithms
4th - 1.1 Basic Programming Model - EXERCISES
欢迎交流 1.1.1 a. 7 b. 200.0000002 c. true 1.1.2 a. 1.618 b. 10.0 c. true d. 33 1.1.3 1 public class MainApp { 2 public static void main(String[] args) { 3 4
·
2015-11-07 15:43
programming
[LeetCode] Missing Number
Givenanarraycontainingndistinctnumberstakenfrom0,1,2,...,n,findtheonethatismissingfromthearray.Forexample,Givennums=[0,1,3]return2.Note:Your
algorithms
houldruninlinearruntimecomplexity.Couldyouimplemen
u011331383
·
2015-11-07 14:00
algorithm: heap sort in python 算法导论 堆排序
Python implementation of heap-sort based on the detailed algorithm description in Introduction to
Algorithms
·
2015-11-07 14:43
Algorithm
3D shape matching
毕设是Graph Matching课题,读到了2009年的一篇paper,Applying Sum and Max Product
Algorithms
of Belief Propagation to
·
2015-11-07 13:57
shape
电子书资源
1)算法部分 CLRS(Introduction.to.
Algorithms
.Second.Edition) http://download.csdn.net/source/2001574
·
2015-11-07 13:33
资源
English Morphology
最为常见的stem 算法 就是The English (Porter2) stemming algorithm http://snowball.tartarus.org/
algorithms
/
·
2015-11-07 11:03
english
AGG 之贝塞尔插值
原文: http://liyiwen.iteye.com/blog/705489 之前 comp.graphic.
algorithms
上有一个讨论,是关于怎么样使用曲线对多边形进行插值处理
·
2015-11-07 11:35
a
Know Thy Complexities!
This webpage covers the space and time Big-O complexities of common
algorithms
used in Computer
·
2015-11-07 11:04
exit
算法:第4版
《算法:第4版》基本信息原书名:
Algorithms
, Fourth Edition作者: (美)塞奇威克(Sedgewick,R.) (美)韦恩(Wayne,K.)
·
2015-11-07 11:57
算法
Design and Analysis of
Algorithms
_Brute Froce
collect and make up this pseudocode from the book: <<Introduction to the Design and Analysis of
Algorithms
_Second
·
2015-11-07 10:35
algorithms
STL 六大组件, 功能与运用概要
算法(
algorithms
) 我倾向于叫做泛型算法, 常见的有 sort, search, copy, erase... 主要用函数模板实现; 3.
·
2015-11-07 10:49
STL
排序算法复习(Java实现)(一): 插入,冒泡,选择,Shell,快速排序
为了便于管理,先引入个基础类: package
algorithms
; /** * @author yovn  
·
2015-11-07 09:23
java实现
【转|译】Reddit 评级算法的工作原理
本文为"How Reddit ranking
algorithms
work”的译文,可对照参考原文 译者: Tiezhen WANG 这篇是 Hacker
·
2015-11-07 09:40
工作原理
HDU 5532 Almost Sorted Array
Others)TotalSubmission(s):570 AcceptedSubmission(s):234ProblemDescriptionWeareallfamiliarwithsorting
algorithms
dml_96
·
2015-11-06 21:00
leetcode-First Missing Positive
HardGivenanunsortedintegerarray,findthefirstmissingpositiveinteger.Forexample,Given[1,2,0]return3,and[3,4,-1,1]return2.Your
algorithms
houldruninO
ljlstart
·
2015-11-06 21:00
LeetCode:Single Number
Difficulty: MediumGivenanarrayofintegers,everyelementappears twice exceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimeco
itismelzp
·
2015-11-06 20:00
异或
number
single
位操作
LeetCodeOJ
PTA 5-11 Saving James Bond-Hard (30) - 图 - 单源最短路 - Dijkstra
题目:http://pta.patest.cn/pta/test/16/exam/4/question/673PTA-DataStructuresand
Algorithms
(English)-5-11Thistimeletusconsiderthesituationinthemovie"LiveandLetDie"inwhichJamesBond
ClareMore
·
2015-11-06 20:00
Machine Learning
Algorithms
Study Notes(6)—遗忘的数学知识
机器学习中遗忘的数学知识最大似然估计(Maximumlikelihood)最大似然估计,也称为最大概似估计,是一种统计方法,它用来求一个样本集的相关概率密度函数的参数。这个方法最早是遗传学家以及统计学家罗纳德·费雪爵士在1912年至1922年间开始使用的。最大似然估计的原理给定一个概率分布,假定其概率密度函数(连续分布)或概率质量函数(离散分布)为,以及一个分布参数,我们可以从这个分布中抽出一个具
Xuesong
·
2015-11-06 09:00
超像素 superpixels 是什么东西
搜索发现根本是另外一回事 http://blog.sina.com.cn/s/blog_50363a7901011dtd.html 有定义 Many existing
algorithms
·
2015-11-06 08:38
super
算法复杂度分析
原文地址:http://www.cnblogs.com/gaochundong/p/complexity_of_
algorithms
.html 为什么要对算法进行分析呢?
·
2015-11-06 07:43
算法
二分图的最大匹配、完美匹配和匈牙利算法
二分图的最大匹配、完美匹配和匈牙利算法 2013-08-01
Algorithms
二分图匹配, 图论, 算法 这篇文章讲无权二分图(unweighted bipartite
·
2015-11-06 07:37
二分图
leetcode-Missing Number
MediumGivenanarraycontainingndistinctnumberstakenfrom0,1,2,...,n,findtheonethatismissingfromthearray.Forexample,Givennums=[0,1,3]return2.Note:Your
algorithms
houldruninlinearruntimecomplexity
ljlstart
·
2015-11-05 23:00
leetcode-Single Number II
Difficulty:MediumGivenanarrayofintegers,everyelementappearsthreetimesexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomplexity.Couldyouimplementitwithoutusingextramemory
ljlstart
·
2015-11-05 22:00
【Leetcode】136-single-number【Java实现】【位操作】
相同为0,不同为1stem:Givenanarrayofintegers,everyelementappearstwiceexceptforone.Findthatsingleone.Note:Your
algorithms
houldhavealinearruntimecomp
alitutu
·
2015-11-05 18:39
LeetCode_Easy
细数二十世纪最伟大的10大算法
二零一一年一月十日 ------------------------------------ 参考论文:The Best of the 20th Century: Editors Name Top 10
Algorithms
·
2015-11-05 09:32
算法
[编程珠玑]aha,
algorithms
Rotate a one-dimensional vector of n elements left by i positions. Solution1 1 void Solution(char* arr,int n,int rotdist) 2 { 3 int i; 4 //循环n和rotdist的最大公约数次 5 for(i=0;i<gcd(n,rot
·
2015-11-05 08:57
algorithms
策略模式
(原文:The Strategy Pattern defines a family of
algorithms
,encapsulates each one,and makes them interchangeable
·
2015-11-05 08:25
策略模式
POJ 3974 Palindrome 求最长回文子串 Manacher
65536KTotalSubmissions: 6206 Accepted: 2283DescriptionAndythesmartcomputersciencestudentwasattendingan
algorithms
classwhentheprofessoraske
zp___waj
·
2015-11-04 13:00
C++
poj
manacer
leetcode-Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given1->2->3->4,youshouldreturnthelistas2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmaynotmodifythevalu
ljlstart
·
2015-11-03 23:00
nosql 数据库的分布式算法
原文: http://juliashine.com/distributed-
algorithms
-in-nosql-databases/ NoSQL数据库的分布式算法 On
·
2015-11-03 22:34
NoSQL
面试题——轻松搞定面试中的红黑树问题
没有学习过红黑树的同学请参考: <<Introduction to
Algorithms
>> Chapt
·
2015-11-03 21:35
面试题
数据结构-stack-学习笔记
http://interactivepython.org/courselib/static/pythonds/index.htmlProblemSolvingwith
Algorithms
andDataStructures
aliceyangxi1987
·
2015-11-02 20:00
数据结构
学习笔记
Basic Sorting
Algorithms
*稳定指原本数列中相同的元素的相对前后位置在排序后不会被打乱 快速排序(n*lgn 不稳定):数组中随机选取一个数x(这里选择最后一个),将数组按比x大的和x小的分成两部分,再对剩余两部分重复这个算法直到结束。但在数据量小的时候表现差。 def quick_sort(a) (x = a.pop) ? quick_sort(a.select{|i| i <= x}) + [x] +
·
2015-11-02 19:33
algorithms
php mcrypt启用 加密以及解密过程详细解析
Mcrypt库支持20多种加密算法和8种加密模式,具体可以通过函数mcrypt_list_
algorithms
()和mcrypt_list_modes()来显示 Mcrypt扩展库可以实现加密解密功能
·
2015-11-02 18:19
PHP
How to Hash Data with Salt
////////////////////////////////////// // SAMPLE: Hashing data with salt using MD5 and several SHA
algorithms
·
2015-11-02 17:04
hash
[算法]Comparison of the different
algorithms
for Polygon Boolean operations
Comparison of the different
algorithms
for Polygon Boolean operations.
·
2015-11-02 16:18
algorithms
replication 技术摘要
本文记录对原文: http://highlyscalable.wordpress.com/2012/09/18/distributed-
algorithms
-in-nosql-databases/ 
·
2015-11-02 16:00
Replication
Top 10
Algorithms
for Coding Interview--reference
Version latest update: 4/6/2014PDF Version latest update: 1/16/2014 The following are top 10
algorithms
·
2015-11-02 16:17
algorithms
上一页
96
97
98
99
100
101
102
103
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他