码迷,mamicode.com
首页 >  
搜索关键字:const    ( 26295个结果
hust 1463 - 第二届“华为杯”初赛题目H
题目描述有m个盒子,第i个盒子的长尾hi,宽为wi。如果两个盒子i,j满足hi#include#includeusing namespace std;const int maxn=20001;struct node{ int x,y;}box[maxn];int a[maxn];bool cm...
分类:其他好文   时间:2014-05-20 02:11:24    阅读次数:251
字符串系列函数(不断跟新)
1.sprintf,sprintf_ssprintf(char* buffer, const char* format, [argument]);vs下需要加上_CRT_SECURE_NO_WARNINGS#include using namespace std;int main(){ cha...
分类:其他好文   时间:2014-05-20 01:40:00    阅读次数:292
c++ 读文本文件
1. std::ifstream t("example.txt"); std::string str((std::istreambuf_iterator(t)), std::istreambuf_iterator());2void readfile(const std::stri...
分类:编程语言   时间:2014-05-19 21:27:01    阅读次数:321
从C到C++ (1)
从C到C++一、 bool类型 bool取值false和true,是0和1的区别; false可以代表0,但true有很多种,并非只有1。二、 const限定符常量在定义后就不能修改,所以定义时必须初始化。在一个文件全局作用域中定义非const变量,在另外的文件中做extern声明,就可以使用这.....
分类:编程语言   时间:2014-05-19 11:02:50    阅读次数:271
POJ 2828 Buy Tickets(神题!线段树or树状数组)
题目链接:POJ 2828 Buy Tickets【题意】给了你 n(1 7 #include 8 #include 9 using namespace std;10 const int MAX = 200005;11 12 int pos[MAX], val[MAX], ans[MAX];13.....
分类:其他好文   时间:2014-05-19 10:10:34    阅读次数:282
HDU 2795 Billboard(线段树)
题目链接:HDU 2795 Billboard【题意】给你一张h*w(1 7 #include 8 #include 9 using namespace std;10 const int MAX = 200005;11 12 int tree[MAX= val)26 {27 ...
分类:其他好文   时间:2014-05-19 10:09:17    阅读次数:419
《c++编程剖析-问题,方案和设计准则》笔记
1vector的使用我们只可以使用operator[]和at()去改动那些已经存在于容器中的东西.而用reserve()函数不会使得容器中充满函数,需要用resize()函数代替当不对容器内的元素做任何改动时,记得使用const_iterator2关于标准成员函数C++标准库的实现中的成员函数签名并不要求与标准中说..
分类:编程语言   时间:2014-05-16 02:35:30    阅读次数:360
java通过经纬度计算两个点的之间的距离的算法
通过两个点的经纬度计算距离从google maps的脚本里扒了段代码,没准啥时会用上。大家一块看看是怎么算的。private const double EARTH_RADIUS = 6378.137;private static double rad(double d){return d * Mat...
分类:编程语言   时间:2014-05-16 00:33:24    阅读次数:365
C++ const限定符全解
const限定符全解 一、const 修饰普通变量     int const a = 500;     const int a = 600;     上述两种情况相同,都是声明一个const型的变量,它们的含义是:变量a的值不可改变! 二、const 修饰 指针     int b = 500;     const int * a = &b;...
分类:编程语言   时间:2014-05-15 19:57:22    阅读次数:415
java-类生命周期(二)
java-类生命周期(二),理论联系实际,例子剖析...
分类:编程语言   时间:2014-05-15 19:22:14    阅读次数:370
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!