码迷,mamicode.com
首页 >  
搜索关键字:char const p    ( 57984个结果
POJ - 2926 Requirements
题意:多维的曼哈顿最远距离 思路:做了1,2,3维的,其实就是枚举所有绝对值的可能的表达式 #include #include #include #include using namespace std; const int MAXN = 100005; const int M = 5; const double inf = 1e200; struct node{ double x...
分类:其他好文   时间:2014-05-01 17:31:01    阅读次数:283
走进C标准库(8)——"string.h"中函数的实现相关字符串操作函数
我的strcat: 1 char *strcat(char *dest,char *src) 2 { 3 char * reval = dest; 4 while(*dest) 5 dest++; 6 while(*src) 7 *dest++...
分类:其他好文   时间:2014-05-01 08:59:02    阅读次数:484
uva 11988 这题可以看出c++中string效率的底下
用c语言实现 #include #include #include using namespace std; typedef struct node { char x; struct node *next; }chan; chan *root = new chan; char a[100010]; int main() { while(scanf("%...
分类:编程语言   时间:2014-04-29 13:47:20    阅读次数:358
UVA 617 - Nonstop Travel(数论+暴力枚举)
题目链接:617 - Nonstop Travel 题意:给定一些红绿灯,现在速度能在30-60km/h之内,求多少个速度满足一路不遇到红灯。 思路:暴力每一个速度,去判断可不可以,最后注意下输出格式即可 代码: #include #include #include const double esp = 1e-6; int n, vis[105]; struct D { do...
分类:其他好文   时间:2014-04-29 13:45:20    阅读次数:333
最新版dlx模板(精确覆盖+重复覆盖)
以前的代码太挫了,重新整理dlx,学习HH把精确覆盖,重复覆盖整合在一起。 代码: struct DLX{ const static int maxn=20010; #define FF(i,A,s) for(int i = A[s];i != s;i = A[i]) int L[maxn],R[maxn],U[maxn],D[maxn]; int size,c...
分类:其他好文   时间:2014-04-29 13:43:20    阅读次数:370
const map 成员变量初始化例子
Author:DriverMonkey Mail:bookworepeng@Hotmail.com Phone:13410905075 QQ:196568501 #include #include #include #include #include #include using namespace std; class a_t { publi...
分类:其他好文   时间:2014-04-29 13:35:21    阅读次数:598
C++数组初始化的问题
有时候为了省事觉得这样就可以初始化一个数组 int main(int argc,char ** argv) { int arrays[11]={10}; }...
分类:编程语言   时间:2014-04-29 13:32:21    阅读次数:300
C++ Primer 学习笔记_48_类与数据抽象 --类的定义和声明【下】
类--类的定义和声明【下】三、关于类定义的更多内容【接上】//P374 习题12.8 class Sales_item { public: double avg_price() const; bool same_isbn(const Sales_item &rhs) const { return rhs.isbn == isbn; } Sa...
分类:编程语言   时间:2014-04-29 13:28:21    阅读次数:324
set容器的实现
set容器是以红黑树容器为基础实现的,在其基础上稍加改变接口即可 #ifndef MY_SET_H_INCLUDED #define MY_SET_H_INCLUDED #include"my_rb_tree.h" namespace juine { template struct identity { const T& operator()(cons...
分类:其他好文   时间:2014-04-29 13:16:20    阅读次数:376
Android NDK JNI WARNING: illegal start byte 0x
今天解决了JNI WARNING: illegal start byte 0x81这个问题; 问题出现的现象是通过jni调用加密方法,调用之后返回密文内容,结果就出现这个问题。 在国外查找一段时间之后,出现这个问题的原因在于:使用newStringUTF方法使用的char *数据要求是可见的内容,所以才导致数据不能正常的返回; 所以一般对我们来说,采用NDK进行加密的时候,加密的密文...
分类:移动开发   时间:2014-04-29 13:15:22    阅读次数:518
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!