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
10010
SDRAM操作原理分析
通过对上面指令的总结,简化出要用到的指令如下:指令常量名CKECSnRASCASnWEn备注空操作NOP10111 行激活ACTIVE10011 读操作READ10101 写操作WRITE10100 预充电PR
10010
logic3
·
2016-03-02 21:00
从动态规划方面(dp)讨论背包问题
33123122输出:6//求以C为起点的,边权之和最大的路径,类似一个带权图,直接用递推的方法//无限背包问题【递推法】 #include #include #definemaxn1010 #definemaxv
10010
ITermeng
·
2016-02-27 22:00
算法
动态规划
背包问题
zstu 1027 Monkey and Banana
#include #include #include #definemaxn
10010
usingnamespacestd; structsb { intx; inty; intz; booloperatorwakaka.y
qq_32995183
·
2016-02-27 21:00
zstu-dp
POJ 2528 Mayor's posters (线段树+离散化)
方法:先将海报数据离散化,然后线段树查询#include #include #include #include usingnamespacestd; constintmaxn=
10010
; structnode
Code_KK
·
2016-02-26 21:00
【bzoj1570】[JSOI2008]Blue Mary的旅行 最大流
blog.csdn.net/popoqqq/article/details/44095061#include #include #include #include #include #include #definemaxn
10010
u012288458
·
2016-02-24 11:00
1063合并果子【解题报告】
因此,代码如下:#include #include usingnamespacestd; intn,w[
10010
],ans=0; intmain() { scanf("%d",&n); for(inti
qq_33583069
·
2016-02-23 08:00
贪心
HDU 1203 I NEED A OFFER!
#include #include intmoney[
10010
]; doubleunlucky[
10010
]; doubledp[
10010
]; doublemin(doubleg,doubleh)
qq_32995183
·
2016-02-22 17:00
dp
HDU
【bzoj1324】Exca王者之剑 最小割
连一条容量为权值的边一个点向周围的点连一条容量为inf的边总费用-最大流即为答案#include #include #include #include #include #include #definemaxn
10010
u012288458
·
2016-02-22 13:00
蓝桥网 算法提高 线段和点
:256.0MB问题描述有n个点和m个区间,点和区间的端点全部是整数,对于点a和区间[b,c],若a>=b且a #include #include usingnamespacestd; intvis[
10010
ShiWaiGaoRen12345
·
2016-02-21 21:00
算法
ACM
蓝桥
贪心
POJ 1064 Cable master
#include doublecable[
10010
]; intmain() { intn,k; while(scanf("%d%d",&n,&k)!
qq_32995183
·
2016-02-17 20:00
poj
二分-精度
01:查找特定的值(1.9)
数组定义inta[
10010
](说明,比题目要求的10000,大一点,防止访问越界)#include inta[
10010
]; intmain(){ intn,x; scanf("%d",&n)
noip之路
·
2016-02-17 16:00
HDU3714 Error Curves
// }xishu[
10010
]; intmain() { intT; scanf("%d",&T); while(T--) { intn; scanf("%d",&
qq_32995183
·
2016-02-16 19:00
hdu-三分
poj 1724 ROADS
include #include #include #include #include usingnamespacestd; constintINF=0x3f3f3f3f; constintmaxn=
10010
rachelsg
·
2016-02-16 16:00
常用小功能(打电话、发短信、发邮件)
打电话-⽅方法1 ●最简单最直接的⽅方式:直接跳到拨号界⾯面NSURL*url=[NSURLURLWithString:@"tel://
10010
"];[[UIApplicationsharedApplication
TIANKONGHAIHUO
·
2016-02-15 21:00
prim && kruskal
6usingnamespacestd; 7 8structnode{ 9intx,y,w; 10}; 11 12nodes[100010];//边 13intsum;//记录最小时间 14intf[
10010
青春的梦想付诸行动
·
2016-02-15 00:00
usaco sprime
#include #include #include #include inti,j,k,n,m; intprime[
10010
],p[
10010
],num,d[
10010
]; boolpd(intx)
yalishiyanzhouyu888
·
2016-02-13 19:00
usaco pprime
#include #include #include #include intprime1[110],prime2[1010],prime3[
10010
],p[
10010
],u,v,num1,num2,
yalishiyanzhouyu888
·
2016-02-13 19:00
新浪微博错误代码详解
该资源需要appkey拥有更高级的授权10006:缺少source参数(appkey)10007:不支持的MediaType(%s)10008:错误:参数错误,请参考API文档10009:任务过多,系统繁忙
10010
Erma_Jack
·
2016-02-12 19:00
poj3461—KMP裸题
题目大意:给出两个字符串p和s,求出p在s中出现的次数#include #include #include #include usingnamespacestd; charp[
10010
],s[1000010
zz_ylolita
·
2016-02-10 22:00
USACO rect1 离散化
article/details/50630521#includestructnode{intx1,y1,x2,y2,c;};structnodes[1010];intpx[2010],py[2010],ux[
10010
CM_yali
·
2016-02-04 15:16
USACO
图的连通性:强连通-Tarjan算法
不早了,先上个模板,做些题再来分析一下;强连通Tarjan算法+前向星模板如下:constintMAXN=110; constintMAXM=
10010
; structedge { intto
ATMacmer
·
2016-02-04 00:00
离散化求RECT1
#include structnode{ intx1,y1,x2,y2,c; }; structnodes[1010]; intpx[2010],py[2010],ux[
10010
],uy[
10010
]
cnyali
·
2016-02-03 17:00
USACO 6.1.3 RECT1 离散化
#include structnode{ intx1,y1,x2,y2,c; }; structnodes[1010]; intpx[2010],py[2010],ux[
10010
],uy[
10010
]
huangkuizuiniu
·
2016-02-03 17:00
图的连通性:强连通-Tarjan算法
不早了,先上个模板,做些题再来分析一下;强连通Tarjan算法+前向星模板如下:constintMAXN=110; constintMAXM=
10010
; structedge { intto
ATMacmer
·
2016-02-02 20:00
POJ1035
#include"stdio.h" structthedic{ charwordname[17]; intthelen; }thedic_p[
10010
]; inti=0; intp=0; intx=
Jeff
·
2016-02-02 19:19
POJ2395 最小生成树prim算法
#include #include usingnamespacestd; constintmaxn=2010,maxm=
10010
,INF=1000001000; inta[maxn][maxn],d[
huangkuizuiniu
·
2016-02-02 19:00
最小生成树
C语言
poj
图论
Prim
UVa 796 Critical Links(无向图求割边)
*需要注意重边的处理,可以先用矩阵存,再转邻接表,或者进行判重 */ constintMAXN=
10010
; constintMAXM=100010; structEdge {
u014552756
·
2016-02-02 15:00
中国联通:「无限流量」时代真的到来了!?丨极客早知道
套餐内容如下:一、友好体验时间2016年1月22日至2016年6月30日二、办理渠道联通营业厅、网上营业厅和
10010
客服热线三、资费标准流量公平使用原则:国内流量免费使用,当月使用流量超过1GB后,上网速率限速至最高
极客公园
·
2016-02-02 00:00
java 网络编程(五)----TCP进阶篇上传文本文件
publicclassUpLoadFileServer{publicstaticvoidmain(String[]args)throwsException{ServerSocketss=newServerSocket(
10010
loleina
·
2016-02-01 11:00
poj 1363简单版两种思路 栈
第一种思路是从出栈的角度看问题第二种是从入栈的角度看问题注意循环次数 ,输入输出问题#include#include#includeusingnamespacestd;//stackst;intstack[
10010
Summer__show_
·
2016-01-30 09:00
【高精度算法】A+B
#include#include#include#includechars[
10010
];inta[
10010
],b[
10010
],c[
10010
];intx[
10010
],y[
10010
],z[
10010
CM_yali
·
2016-01-29 15:43
C++
poj1741 tree 点分治
把这几天写的东西上传一下写博客的意义大概就是整理一下思路以及方便日后复习不得不说把代码放在文件夹里做完我是不会过目的写博客或许会增加我的成就感从而会多注意一下吧哈哈csdn现在也高大上了很多嘛poj1741Tree题目大意:求(u,v)满足dis(u,v) #include #include usingnamespacestd; constintN=
10010
yxr0105
·
2016-01-27 13:00
poj
点分治
算法提高 快乐司机
1#include 2#include 3#include 4usingnamespacestd; 5structnode{ 6intg,p; 7doubleave; 8}s[
10010
]
青春的梦想付诸行动
·
2016-01-25 23:00
算法提高 快乐司机
1#include 2#include 3#include 4usingnamespacestd; 5structnode{ 6intg,p; 7doubleave; 8}s[
10010
]
青春的梦想付诸行动
·
2016-01-25 23:00
POJ 2388(快排)
include #include #include #include #include usingnamespacestd; constintINF=0x3f3f3f3f; constintmaxn=
10010
rachelsg
·
2016-01-25 17:00
poj2230 Watchcow
#include #include #include #include #include usingnamespacestd; constintmaxn=
10010
; vectoradj[maxn];
yexiaohhjk
·
2016-01-22 18:00
python--day2
每一个整数都具备如下功能1bit_length(self): 2"""返回表示该数字的时占用的二进制最少位数""" 3a=18 4print(bin(a)) 5print(a.bit_length()) 60b
10010
二傻闯江湖
·
2016-01-20 11:00
Lightoj 1281 (二维最短路)
D条,问0到N-1的最短路,多开一维记录走到该点选择了多少条路即可代码#include #include #include #include usingnamespacestd; constintN=
10010
qq_21057881
·
2016-01-18 13:00
emergency call number
108国内邮政编码查询184国内邮政特快专递11185森林火警95119红十字会急救台999供电局95598文化市场综合执法12318税务局通用电话12366中国电信综合服务10000中国联通客服热线
10010
深南大盗_christopher
·
2016-01-15 10:55
【PA2013】【BZOJ3733】Iloczyn
k,问能否将n分解为k个不同正整数的乘积Input第一行一个数T(T #include #include #include #include #defineLLlonglong #defineMAXN
10010
CreationAugust
·
2016-01-14 16:00
搜索
剪枝
分解因数
DFS之 部分和问题
《挑战程序设计》书上的DFS题;从a1开始按顺序决定每个数加或者是不加,紧接着判断就好啦;#include #defineN
10010
usingnamespacestd; intn,k; inta[N
qq_33638791
·
2016-01-13 21:00
Maximal Square
findthelargestsquarecontainingall1'sandreturnitsarea.Forexample,giventhefollowingmatrix:10100 10111 11111
10010
dylqt
·
2016-01-13 12:00
[PTA] 5-17 Hashing (25分)
#include #include #include inta[
10010
]; intans[
10010
]; intprime[
10010
]; intm,n; voidGetPrime() { intMAX
ZJU_fish1996
·
2016-01-06 18:00
【bzoj2453】维护队列 分块
表示上次出现的位置,那么询问[l,r]中有多少个不同的数等价于[l,r]中有多少个pre[i] #include #include #include #include #include #definemaxn
10010
u012288458
·
2016-01-05 20:00
EC-Final之质因子
输入多组输入,输入一个数字n(1#includeinta[
10010
];intmain(){a[0]=1;a[1]=1;inti,j,n,m,k,t
JimmyLegend
·
2016-01-02 12:49
练习
Concert Tour(Uvalive 6853)
3 34 132040 502012 2050501 01010
10010
10100
NaCl__
·
2015-12-31 08:00
UVa 10976 Fractions Again?!(分数拆分)
CODE:#include#include#include#include#include#includeusingnamespacestd;intx[
10010
],y[
10010
],k,cnt;intmain
ramay7
·
2015-12-30 21:49
算法竞赛入门经典(第2版)
******水题******
非递归DFS
递归的记忆化搜索是很容易实现的,只是考虑到N#includeintf[
10010
][4];intnext[4][4]={0,0,1,0,0,0,1,1,1,1,0,0,0,1,0,0};intn;intDFS
qust1508060414
·
2015-12-29 21:00
BZOJ2754 SCOI2012day1T2喵星球上的点名(后缀数组)
include 7#include 8#defineMaxN30010 9#defineMaxM200010 10usingnamespacestd; 11intn=0,m,cnt=0,fen=
10010
Lukaluka
·
2015-12-29 19:00
iOS打电话、发短信功能
UIWebView*callWebview=[[UIWebViewalloc]init]; NSURL*telURL=[NSURLURLWithString:@"tel:
10010
"]; [callWebviewloadRequest
sevenquan
·
2015-12-25 11:00
打电话
发短信
iOS打电话发短信功能
iOS打电话
iOS发短信功能
上一页
18
19
20
21
22
23
24
25
下一页
按字母分类:
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
其他