码迷,mamicode.com
首页 >  
搜索关键字:pb    ( 1094个结果
int a[5]={}, &a+1与(int*)a+1的区别
#include #include using namespace std; int main() { int b, *pb; char *pb2; char *pb3; //&b = 0x001af74 pb = &b + 1; //0x00...
分类:其他好文   时间:2015-09-09 21:06:23    阅读次数:185
UVA 11922(Splay
题目:维护一个序列,支持将一段数翻转并插到最后的操作,最后输出整个序列。思路:直接套的大白模板,第一次用splay,贴一下。。/**@author: Cwind*http://www.cnblogs.com/Cw-trip/*/#include #define pb push_back#defin....
分类:其他好文   时间:2015-09-06 17:49:44    阅读次数:195
UVA11090 Going in Cycle
二分法+spfa判负环。如果存在一个环sum(wi)using namespace std;const int maxn = 51;struct Edge{ int v,nxt; double w;};vector edges;int head[maxn];#define PB push...
分类:其他好文   时间:2015-09-04 11:11:57    阅读次数:136
UVa-11584 - Partitioning by Palindromes
先用manacher找到以所有回文串,再暴力统计以每个字符为结尾的所有回文串,然后dp就容易了。最坏情况下是O(n^2) 1 #include 2 #include 3 #include 4 #include 5 #include 6 #define pb push_back 7 using nam...
分类:其他好文   时间:2015-09-03 19:10:27    阅读次数:170
UVA Live 3713 Astronauts
用布尔变量表示状态,把限制条件转化为XνY的形式以后跑2SAT,根据变量取值输出方案。#includeusing namespace std;const int maxn = 1e5+5;#define PB push_backbool vis[maxn*2];vector G[maxn*2];in...
分类:其他好文   时间:2015-09-02 09:20:28    阅读次数:116
Hadoop基于Protocol Buffer的RPC实现代码分析-Server端--转载
原文地址:http://yanbohappy.sinaapp.com/?p=110 最新版本的Hadoop代码中已经默认了Protocol buffer(以下简称PB,http://code.google.com/p/protobuf/)作为RPC的默认实现,原来的WritableRpcEng...
分类:其他好文   时间:2015-08-31 21:30:04    阅读次数:227
Codeforces Round #318 (Div. 2) B Bear and Three Musketeers
不要想多了直接暴。对于u枚举a和b,判断一个是否连边,更新答案。#includeusing namespace std;int n,m;const int maxn = 4001;#define PB push_backvector G[maxn];bool g[maxn][maxn];int de...
分类:其他好文   时间:2015-08-30 09:54:16    阅读次数:168
UVA820 Internet Bandwidth
很裸的模版题,就是敲起来稍微麻烦一点。#includeusing namespace std;struct Edge{ int v,cap;};const int maxn = 101;vector E;vector G[maxn];#define PB push_backvoid AddEd...
分类:Web程序   时间:2015-08-28 23:15:26    阅读次数:201
Hadoop(三)——核心之一HDFS
上篇讲述了Hadoop分布式集群环境的搭建,其实重要是HDFS分布式文件系统的搭建,MapReduce主要是需要我们程序员来进行编写算法来进行逻辑运算的。这篇就重点来讲述一下HDFS(HadoopDistribute File System,也就是Hadoop分布式文件系统)。     一、HDFS的主要设计理念:     1、存储超大文件,这里的“超大文件”是指几百MB、GB甚至TB,PB级别的...
分类:其他好文   时间:2015-08-28 00:50:42    阅读次数:163
ATmega16L驱动ILI9325/9328
首先是硬件连线:PB----8位数据口 PA0--- 复位信号RESET PA1---片选CS PA2----寄存器选择信号RS PA3---写信号WR PA4---读信号RD文件名:Type.h,主要定义一些数据变量的别名/************************************....
分类:其他好文   时间:2015-08-26 15:38:48    阅读次数:178
1094条   上一页 1 ... 76 77 78 79 80 ... 110 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!