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:
STL
Algorithms
之 unique
C++的文档中说,STL中的unique是类似于这样实现的: template <class ForwardIterator> ForwardIterator unique ( ForwardIterator first, ForwardIterator last ) { ForwardIterator result=first; while (++first
·
2015-10-31 12:15
algorithms
排序算法复习(Java实现) (二): 归并排序,堆排序,桶式排序,基数排序
package
algorithms
; i
·
2015-10-31 12:36
java实现
排序算法复习(Java实现)(一): 插入,冒泡,选择,Shell,快速排序
//www.blogjava.net/javacap/archive/2007/12/13/167364.html 为了便于管理,先引入个基础类: package
algorithms
·
2015-10-31 12:36
java实现
Properties in C++
english version:http://www.codeguru.com/cpp/cpp/
algorithms
/general/article.php/c13039/#more 当我使用C#的属性编程的时候
·
2015-10-31 11:07
properties
mcrypt加密以及解密过程
Mcrypt库支持20多种加密算法和8种加密模式,具体可以通过函数mcrypt_list_
algorithms
()和mcrypt_list_modes()来显示 Mcrypt扩展库可以实现加密解密功能
·
2015-10-31 11:06
加密
note of introduction of
Algorithms
(Lecture 3 - Part1)
Lecture 3(part 1) Divide and conquer 1. the general paradim of algrithm as bellow: 1. divide the problem into subproblems; 2. conqure each subproblems recrusively; 3. combine solution 2. Some ty
·
2015-10-31 11:28
algorithms
note of introduction of
Algorithms
(Lecture 2)
Lecture 2 The lecture 2 is mainly about mathematical things, no
algorithms
.
·
2015-10-31 11:26
algorithms
Note of introduction of
Algorithms
(Lecture 1)
This is the note for introduction of
Algorithms
, based on the MIT open class.
·
2015-10-31 11:26
algorithms
Some_sort_
algorithms
复习下数据结构常用的排序算法,更多内容上wiki 快速排序(不稳定 O(n log n)) 快速排序(Quicksort)是对冒泡排序的一种改进。由C. A. R. Hoare在1962年提出。它的基本思想是:通过一趟排序将要排序的数据分割成独立的两部分,其中一部分的所有数据都比另外一部分的所有数据都要小,然后再按此方法对这两部分数据分别进行快速排序,整个排序过程可以递归进行,以此达到整
·
2015-10-31 11:37
algorithms
数据结构-树-学习笔记
http://interactivepython.org/courselib/static/pythonds/index.htmlProblemSolvingwith
Algorithms
andDataStructures
aliceyangxi1987
·
2015-10-31 11:00
数据结构
python
学习笔记
一致性hash演示
1 package com.test.
algorithms
; 2 3 import
·
2015-10-31 10:17
hash
poj1472
Total Submissions: 941 Accepted: 325 Description Analyzing the run-time complexity of
algorithms
·
2015-10-31 10:14
poj
【推荐系统论文笔记】Introduction To Recommender Systems:
Algorithms
and Evaluation
这篇论文比较短,正如题目所说,主要还是简单地介绍了一下推荐系统的一些算法以及评估的方法。 推荐系统之前是基于关键字信息的过滤系统,后来发展成为协同过滤系统,解决了两个问题:1、通过人工审核去评价那些具有大量关键字的文档;2、基于人们的品味去过滤一些非文本文件,如音乐。 之后,推荐系统研究领域出现了分叉。一方面,关注实际问题中的商业价值;另一方面,一些机器学习者应用大量技术在推荐系统。 正是这
·
2015-10-31 10:31
algorithms
LeetCode -- Majority Element II
题目描述:Givenanintegerarrayofsizen,findallelementsthatappearmorethan⌊n/3⌋times.The
algorithms
houldruninlineartimeandinO
csharp25
·
2015-10-31 10:00
2014年7月23日比赛题目
nbsp;learning a new algorithm which wasn't taught in his
algorithms
·
2015-10-31 10:18
New STL
Algorithms
That Will Make A More Productive Developer
Introduction C++0x was recently furnished with new
algorithms
.
·
2015-10-31 10:30
algorithms
jLayout — JavaScript Layout
Algorithms
The jLayout JavaScript library provides layout
algorithms
for laying out components.
·
2015-10-31 10:33
JavaScript
软件注册码算法
http://www.csharpproject.com/articles/csharp/
algorithms
/LicenseCode.aspx 实现原代码,包括一个Asp.Net
·
2015-10-31 10:05
注册码
What are the 10
algorithms
one must know in order to solve most algorithm challenges/puzzles?
QUESTION : What are the 10
algorithms
one must know in order to solve most algorithm challenges/puzzles
·
2015-10-31 10:46
algorithms
常用Delphi开发资料网址
相关Delphi链接如下: Books, Tutorials Tomes of Delphi:
Algorithms
and data structures by Julian M.
·
2015-10-31 10:45
Delphi
Some Efficient
Algorithms
1. For Integer,you can consider the following: *2 ≡ <<1 /2 ≡ >>1 %2 ≡ &1 2. Generate a non-repeating numbers random array&nb
·
2015-10-31 10:08
algorithms
young tableaus
Young tableaus 这是 Introduction_to_
algorithms
一个 路学校运动, 我也难倒,互联网没有找到现有的应答。
·
2015-10-31 10:02
table
c# 排列组合
using System; using System.Collections.Generic; namespace
Algorithms
{  
·
2015-10-31 10:23
C#
Interesting Finds: 2009 01.18~01.21
Web Intro to Caching,Caching
algorithms
and caching frameworks part 1 - part 2 Readings in Distributed
·
2015-10-31 09:25
REST
Java pipeline
cullenprogramming.homelinux.com/PIPEuserguide.htm http://www.cise.ufl.edu/research/ParallelPatterns/PatternLanguage/
AlgorithmS
tructure
·
2015-10-31 09:49
pipeline
STL(二)Iterators
为获取不同容器元素提供了统一接口(Iterators are central to generic programming because they are an interface between containers and
algorithms
·
2015-10-31 09:51
iterator
RC4算法的一个实现(来自SourceForge)
下载地址是:http://sourceforge.net/projects/rc4dotnet 另外在CodeProject(http://www.codeproject.com/cs/
algorithms
·
2015-10-31 09:52
source
data structure online video
nbsp; http://www.onlinevideolecture.com/computer-science/nptel-iit-delhi/data-structures-and-
algorithms
·
2015-10-31 09:48
struct
Machine Learning
Algorithms
Study Notes(1)--Introduction
Machine Learning
Algorithms
Study Notes 高雪松 @雪松Cedro Microsoft MVP  
·
2015-10-31 09:36
Machine Learning
Algorithms
Study Notes(3)--Learning Theory
Machine Learning
Algorithms
Study Notes 高雪松 @雪松Cedro Microsoft MVP  
·
2015-10-31 09:36
Start the way to
ALGORITHMS
当每个人刚结束高考的时候,脑海里总是 充斥着各种关于大学校园;关于自己的专业;关于自己的大学生活的想象。。。。这些想象纵然都是美好的但是当我真正踏进成都大学的校园时,首先关于大学校园的幻想破灭了,(因为成都大学和我想象中的差的太远了);紧接着关于自己的专业的幻想也还不犹豫的破灭了,(原本想报另一个学校的核工程与核技术专业的,但是现实总是那么的无情——成都大学居然没有这个专业!!!天理何在啊,5
·
2015-10-31 09:47
algorithms
用Python实现的数据结构与算法:开篇
一、概述 用Python实现的数据结构与算法 涵盖了常用的数据结构与算法(全部由Python语言实现),是 Problem Solving with
Algorithms
and Data Structures
·
2015-10-31 09:59
数据结构与算法
数据结构与算法(php版)
Data Structures and
Algorithms
with Object-Oriented Design Patterns in PHP : http://www
·
2015-10-31 09:39
数据结构与算法
我们曾经学过 “程序=算法+数据结构 ” 呵呵,有点怀念
只是偶然在网上看到了一篇“The Most Important
Algorithms
”,突然怀念起了刚刚学编程时那句话:“程序=算法+数据
·
2015-10-31 09:51
数据结构
Algorithms
Part 1-Question 6- 2SUM Median-数和以及中位数问题
本次有两个编程问题,一个是求两个数的和满足一定值的数目,另一个是求中位数。 2SUM问题 问题描述 The goal of this problem is to implement a variant of the 2-SUM algorithm (covered in the Week 6 lecture on hash table applicat
·
2015-10-31 09:33
algorithms
Introduction to Deep Neural Networks
Introduction to Deep Neural Networks Neural networks are a set of
algorithms
, modeled loosely after
·
2015-10-31 09:58
NetWork
浅尝boost之String
algorithms
library
很多时候我都想在自已的代码中全部使用std::string代替MS的CString来保证我的程序在未来易于移植,但老实说CString比std::string好用很多,每每还是被诱惑了;再看看C#的string,用起来感觉更好。不过有了这个库 我可以基本抵制住诱惑了... #include <boost/algorithm/string.hpp>&nbs
·
2015-10-31 08:20
algorithms
编程艺术第十六~第二十章:全排列/跳台阶/奇偶调序,及一致性hash算法
故常常关注个人所建的
Algorithms
1-14群内朋友关于笔试,面试,宣讲会,off
·
2015-10-31 08:04
hash
LeetCode----Swap Nodes in Pairs
swapeverytwoadjacentnodesandreturnitshead.Forexample,Given 1->2->3->4,youshouldreturnthelistas 2->1->4->3.Your
algorithms
houlduseonlyconstantspace.Youmay
whiterbear
·
2015-10-30 22:00
LeetCode
链表
python
交换链表节点
Designing
algorithms
for Map Reduce
Since the emerging of Hadoop implementation, I have been trying to morph existing
algorithms
from various
·
2015-10-30 16:00
algorithms
Basic Data Structures and
Algorithms
in the Linux Kernel--reference
http://luisbg.blogalia.com/historias/74062 Thanks to Vijay D'Silva's brilliant answer in cstheory.stackexchange.com I have been reading some of the famous data structur
·
2015-10-30 14:50
algorithms
【设计模式】设计模式概述
(原文:The Strategy Pattern defines a family of
algorithms
,encapsulates each one,and makes them interchangeable
·
2015-10-30 14:14
设计模式
depth peeling的实现和应用
它是由Mamman 1989年在Transparency and antialiasing
algorithms
implemente
·
2015-10-30 14:53
depth
了解 NoSQL 的必读资料
了解 NoSQL 的必读资料 分类: Architecture Design Data-Structrue/
Algorithms
Open Source Database 2010
·
2015-10-30 14:16
NoSQL
英文面试题
Algorithms
* What’s the difference between a linked list and anarray?
·
2015-10-30 14:44
面试题
算法导论课后习题解析 第一章
最近开始看算法导论了,但是发现官方给的参考答案只涵盖了一部分的习题,所以把自己做的答案分享一下,如有错误之处尽管指出,希望通过这个过程能与大家共同进步 我看的版本是英文第三版 (Introduction to
Algorithms
·
2015-10-30 14:42
算法导论
OpenCV学习笔记八:opencv_photo模块
restores the damaged image areas using one of the available intpainting
algorithms
CV_EXPORTS_W void
·
2015-10-30 13:49
opencv
算法及其量度
algorithmic analysis is“to obtain sufficient understanding about the relative merits of complicated
algorithms
·
2015-10-30 12:58
算法
CLR探索系列:Server and Workstation Garbage Collection探索(垃圾回收系列)
首先推荐一本书:Garbage Collection:
Algorithms
for Automatic Dynamic Memory Management (Hardcover
·
2015-10-30 12:56
Collection
ICA扩展描述
ICA算法扩展描述 上面介绍的内容基本上是讲义上的,与我看的另一篇《Independent Component Analysis:
Algorithms
·
2015-10-30 12:19
ca
上一页
98
99
100
101
102
103
104
105
下一页
按字母分类:
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
其他