码迷,mamicode.com
首页 >  
搜索关键字:st    ( 5888个结果
破解交换机密码
交换机密码破解:1、进入特权模式设置一个enable 密码 Switch(config)#enable password 123 2、保存 Switch#copy running-config st...
分类:其他好文   时间:2014-08-04 13:40:17    阅读次数:215
【设计模式】备忘录模式
备忘录模式:在不破坏封装性的前提下,捕获一个对象的内部状态,并在该对象之外保存这个状态。这样,以后就可以将该对象恢复到原先保存的状态。下面是一个用C++描述的备忘录模式的基本框架。 #include #include using namespace std; // 备忘录 class Memento { public: // 保存数据 Memento(const string &st...
分类:其他好文   时间:2014-08-03 23:21:30    阅读次数:320
POJ 3348
旋 转卡壳水题。直接使用旋转卡壳求距离。#include #include #include #include #include using namespace std;const int MAXN=50100;struct point { int x,y;}p[MAXN];int n;int st...
分类:其他好文   时间:2014-08-03 17:36:05    阅读次数:227
HDU 3709 Balanced Number 枚举+数位DP
枚举支点之后数位DP,注意姿势#include #include #include #include #include #include #include #include #include #include #include #include #include using namespace st...
分类:其他好文   时间:2014-08-02 18:11:43    阅读次数:301
STM32学习笔记2(TIM模块定时器)
TIM模块定时器向上溢出 & 输出比较首先我们必须肯定ST公司的实力,也承认STM32的确是一款非常不错的Cortex-M3核单片机,但是,他的手册实在是让人觉得无法理解,尤其是其中的TIM模块,没有条理可言,看了两天几乎还是不知所云,让人很是郁闷。同时配套的固件库的说明也很难和手册上的寄存器对应起...
分类:其他好文   时间:2014-08-02 12:39:13    阅读次数:266
Union和Union All的差别
如果我们有一个表Student,包含下面字段与数据:drop table student;create table student(id int primary key,name nvarchar2(50) not null,score number not null);insert into st...
分类:其他好文   时间:2014-08-01 22:57:42    阅读次数:318
poj1270拓扑排序
题意:给定一些大小关系,把关系从大到小排序,如果有多种相同关系就按字典序排序。例如 x #include#include#includeconst int maxn = 200;char var[maxn];char ans[maxn];char st[maxn];int map[maxn][max...
分类:其他好文   时间:2014-08-01 22:45:02    阅读次数:192
HDOJ 4906 Our happy ending 状压DP(数位DP?)
http://acm.hdu.edu.cn/showproblem.php?pid=4906题意:N个数的序列,每个数可以选择填0-L,如果一个序列可以选出某些数,他们的和为K,那么这个序列就是”好序列“,给定N 2 #include 3 #include 4 using namespace st....
分类:移动开发   时间:2014-08-01 18:47:42    阅读次数:292
poj 1815 Friendship (最小割+拆点+枚举)
题意: 就在一个给定的无向图中至少应该去掉几个顶点才能使得s和t不联通。 算法: 如果s和t直接相连输出no answer。 把每个点拆成两个点v和v'',这两个点之间连一条权值为1的边(残余容量) v和v''分别是一个流进的点,一个流出的点。 根据求最小割的性质,权值小的边是可能被选择的(断开的)。 添加源点st=0和汇点en=2*n+1,源点与s连权值为i...
分类:其他好文   时间:2014-08-01 13:38:42    阅读次数:165
hdu1598--结题报告
题解:对于输入的边,我们首先按照速度从大到小排序,然后对于每一次询问,st   end 两个城市,我们暴力枚举, for(int i = 0; i 上马: //187MS 300K #include #include using namespace std; #define MAX 205 #define INF 1<<30 int N,M,Q; struct Edge { ...
分类:其他好文   时间:2014-08-01 10:53:31    阅读次数:204
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!