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
alg
hud1520Anniversary party(树形DP)
2 #include<cstdio> 3 #include<cstring> 4 #include<stdlib.h> 5 #include<
alg
·
2015-11-13 00:08
part
hdu 3397 Sequence operation 线段树
其他地方都和另外一道题一样 代码有点长,但是不难 View Code #include<cstdio> #include<cstring> #include<
alg
·
2015-11-12 21:32
sequence
后缀数组模板
vector> #include <cstring> #include <string> #include <cmath> #include <
alg
·
2015-11-12 19:59
后缀数组
js版的md5()
MD5 Message * Digest
Alg
·
2015-11-12 19:54
MD5
ural 1998 The old Padawan
cstring> #include <string> #include <cstdio> #include <cmath> #include <
alg
·
2015-11-12 18:02
wa
红黑树的java实现
先附上代码,然后贴上自己的分析图 package
Alg
; public class RBTreeNode { public enum Color {Red , Black };
·
2015-11-12 17:13
java实现
快速排序算法
package
Alg
; import java.util.Random; public class QuickSort { public static void quickSort(int
·
2015-11-12 17:13
快速排序
二叉树算法的java实现
package
Alg
; public class BSTree { private BSTreeNode root = null; //树根节点 private int count =
·
2015-11-12 17:12
java实现
基础算法(二):堆排序,快速排序
基本的算法 堆排序,快速排序 堆排序: package
alg
; import java.util.Arrays; /** * @author zha * 算法的复杂度为
·
2015-11-12 15:05
快速排序
基本算法(一):插入排序,归并排序
基础的排序的算法: 插入排序, 归并算法 插入排序: package
alg
; import java.util.Arrays; /** * @author
·
2015-11-12 15:05
插入排序
hdu2795Billboard(线段树单点更新 区间K值)
1 #include <iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<
alg
·
2015-11-12 14:43
HDU
String和数字之间的转化
主要是JDK的代码,还是比较的经典,值得一看,例如: package
alg
; /** * @author zha 字符串之间的转化 */ public class
Alg
3StringToint
·
2015-11-12 11:09
String
字符串包含的判断
代码: package
alg
; import java.util.Arrays; /** * @author zha * 字符串包含 */ public class
Alg
2StringCont
·
2015-11-12 11:08
字符串
最大子序列
package
alg
; /** * 求取最大的子数列 * */ public class SubMaxArray { public static void
·
2015-11-12 11:04
序列
hdu 1272 小希的迷宫(并查集 最小生成树)
即通过并查集求出是否构成最小生成树 #include<cstdio> #include<cstring> #include<iostream> #include<
alg
·
2015-11-12 10:00
最小生成树
构造图 Codeforces Round #236 (Div. 2) C. Searching for Graph
只要不和自己连,不重边就可以,正好2*n+p就结束:) 4 */ 5 #include <cstdio> 6 #include <iostream> 7 #include <
alg
·
2015-11-11 18:12
codeforces
最短路(Floyd_Warshall) POJ 1125 Stockbroker Grapevine
article/details/37955253 5 */ 6 #include <cstdio> 7 #include <iostream> 8 #include <
alg
·
2015-11-11 18:58
broker
POJ2104&&HDU2665(静态区间第K小)
这题正是主席树的裸题,主席树具体是啥东西,可以去看CLJ的论文~~~~ 代码是学习haha593572013大神的~~~ 代码: #include <iostream> #include <
alg
·
2015-11-11 17:00
poj
进程
这个程序对你系统的正常运行是非常重要的svchost.exe 是一个属于微软Windows操作系统的系统程序,用于执行DLL文件
alg
.exe
·
2015-11-11 17:36
进程
hdu 3788 字符串
include <cstdio>#include <cstdlib>#include <cstring>#include <cmath>#include <
alg
·
2015-11-11 15:32
字符串
c++builder CryptoAPI md5
include <wincrypt.h> DWORD GetHash( CONST BYTE * pbData, DWORD dwDataLen,
ALG
_ID
·
2015-11-11 13:11
C++Builder
cdoj 791 Frozen Rose-Heads
1 #include<cstdio> 2 #include<iostream> 3 #include<cmath> 4 #include<
alg
·
2015-11-11 13:46
head
DP Codeforces Round #303 (Div. 2) C. Woodcutters
,它倒左或右或不动能倒多少棵树 5 分情况讨论,若符合就取最大值更新,线性dp,自己做出来了:) 6 */ 7 #include <cstdio> 8 #include <
alg
·
2015-11-11 12:33
codeforces
NUnit + VS2010 简单入门
VS2010 二、安装 NUnit(略) 三、编写代码 项目结构 AlgLib 代码
Alg
.cs 1 using System
·
2015-11-11 07:46
VS2010
STL的应用 multiset bitset next_permutation
Author: bjfuwangzhu */#include<iostream>#include<stdio.h>#include<set>#include<
alg
·
2015-11-11 06:25
bitset
poj1971Parallelogram Counting
1 #include <iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<
alg
·
2015-11-11 05:47
count
POJ 2377 Bad Cowtractors
lt;iostream> #include<cstdio> #include<cmath> #include<cstring> #include<
alg
·
2015-11-09 14:00
Trac
codeforces 340D Bubble Sort Graph(dp,LIS)
——by fraud Bubble Sort Graph Iahub recently has learned Bubble Sort, an
alg
·
2015-11-09 13:53
codeforces
poj 1870 Bee Breeding
要取绝对值的) 代码如下: 1 #include<iostream> 2 #include<stdio.h> 3 #include<
alg
·
2015-11-08 15:19
poj
Codeforces Round #295 (Div. 2)
#include<cstdio> 3 #include<cstring> 4 #include <cmath> 5 #include<
alg
·
2015-11-08 15:05
codeforces
HDU 3934 Summer holiday(凸包内接最大三角形)
#include <iostream> #include <stdio.h> #include <cmath> #include <
alg
·
2015-11-08 11:05
HDU
三星 note3销售地查询、销售地代码
(阿尔及利亚)
ALG
= ALGERIA ALR =
·
2015-11-08 10:40
Note
hdu 4418 Time travel 概率DP
代码如下: 1 #include<iostream> 2 #include<stdio.h> 3 #include<
alg
·
2015-11-07 14:21
time
UVa 536 Tree Recovery
#include<cstdio> 3 #include<cstring> 4 #include <cmath> 5 #include<
alg
·
2015-11-07 14:13
tree
[
ALG
]POJ1067解题报告
[Wythoff's game] 初始:两堆物品动作:从一堆中取任意数量或从两堆中取相同数量结束:拿走最后一个物品的胜利[等价模型]1/4无限的象棋盘上将queen移到角落位置[贝蒂定理(Betti theorem)]设a、b是正无理数且 1/a +1/b =1。记P={ [na] | n为任意的正整数},Q={ [nb] | n 为任意的正整数},([x]'指的是取x的整数部分)则P与Q是
·
2015-11-07 12:11
poj
poj 3026 Borg Maze
View Code #include<iostream> #include<cstdio> #include<cstdlib> #include<
alg
·
2015-11-07 11:01
poj
离散数学笔记-算法部分
普及一下知识) 3、算法的设计基本方法(非常重要的东西,但是这里只简单提一下) 4、算法复杂度与函数的增长(复杂而又麻烦的东西,用简单的语言随便说一说) 5、几个算法展示 1、算法的定义 算法(
Alg
·
2015-11-07 10:04
算法
hdu 1171 Big Event in HDU
1 #include<cstdio> 2 #include<cstring> 3 #include<
alg
·
2015-11-07 10:07
event
latex算法步骤如何去掉序号
我们只需要引用algorithmic这个包就可以了,代码如下:\usepackage{algorithmic}\begin{algorithm}[htb]\caption{SDE}\label{
alg
2
瑟荻
·
2015-11-06 19:15
latex
论文写作
lightoj 1052 - String Growth & uva 12045 - Fun with Strings 矩阵
gt; 2 #include<cstdio> 3 #include<cstring> 4 #include<cmath> 5 #include<
alg
·
2015-11-03 22:30
String
Windows系统进程详解
是否为系统进程: 是
alg
.exe 进程文件:
alg
&n
·
2015-11-02 19:12
windows
[hdu5200]离线+标记
10240000,10240000") 2 3 #include <iostream> 4 #include <cstdio> 5 #include <
alg
·
2015-11-02 16:22
HDU
POJ 2299 Ultra-QuickSort(求逆序数,归并排序或者离散化+树状数组)
Accepted: 9915 Description In this problem, you have to analyze a particular sorting
alg
·
2015-11-02 13:07
Quicksort
hdu 4185(最大匹配)
1 #include<iostream> 2 #include<cstdio> 3 #include<cstring> 4 #include<
alg
·
2015-11-02 11:50
HDU
感知机分类算法
test_targets, a] = Perceptron(train_patterns, train_targets, test_patterns,
alg
_param
·
2015-11-01 14:18
算法
VC使用CryptoAPI计算MD5
失败返回GetLastError() // CONST BYTE *pbData, // 输入数据 // DWORD dwDataLen, // 输入数据字节长度 //
ALG
_ID
·
2015-10-31 18:39
MD5
ICIP2012 关于Saliency Map的文章
2,An
Alg
·
2015-10-31 17:11
2012
《Cracking the Coding Interview》——第1章:数组和字符串——题目7
代码: 1 // 1.7 Write an
alg
·
2015-10-31 15:29
interview
编程之美----高效率地安排见面会----贪心策略
c++实现: #include <iostream> #include <vector> #include <
alg
·
2015-10-31 14:00
编程之美
BZOJ3251 : 树上三角形
数列增长速度快于斐波那契数列,当达到50项时就会超过int的范围 所以暴力查询,如果路径长度达到50就肯定有解,否则暴力排序检验 #include<cstdio> #include<
alg
·
2015-10-31 11:49
ZOJ
上一页
6
7
8
9
10
11
12
13
下一页
按字母分类:
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
其他