码迷,mamicode.com
首页 >  
搜索关键字:too long    ( 24701个结果
poj 2104 K-th Number(划分树模板)
划分树模板题,敲上模板就ok了。 #include #include #include #include #include #include #include #include #include #include #define MP make_pair #define LL long long #define CLR(a, b) memset(a, b, sizeof(a)) using n...
分类:其他好文   时间:2014-05-08 17:29:39    阅读次数:398
java ==和equals的区别
java中的数据类型,可分为两类: 1.基本数据类型,也称原始数据类型。byte,short,char,int,long,float,double,boolean 他们之间的比较,应用双等号(==),比较的是他们的值。 2.复合数据类型(类) 当他们用(==)进行比较的时候,比较的是他们在内存中.....
分类:编程语言   时间:2014-05-08 15:13:23    阅读次数:395
最长不下降序列解决算法
#include "stdafx.h"#include#include#includeusing namespace std;long long d[100000],a[100000];long long len,i,k,n;long long min(long long t){ long long...
分类:其他好文   时间:2014-05-08 14:05:19    阅读次数:261
LoNg wAy tO Go
觉得一个电子工程师/硬件工程师应该有下面的能力: 1、模拟/数字电路的分析和设计。教科书上讲的都应该会,包括分离元件和运放的信号放大,滤波,波形产生,稳压电源,逻辑化简,基本触发器,基本计数器、寄存器,脉冲产生和整形,ADC、DAC,锁相环等。要能定性和定量的分析和设计电路的功能和性能,比如说稳定性...
分类:其他好文   时间:2014-05-08 13:03:01    阅读次数:494
byte,short,char的类型转换
《java深入解析》中例子:在平时对byte char short这几个范围较小的类型声明并赋值时,往往忽略了一个问题。在Java源文件当中为变量赋值时经常使用字面常量,这些常量在Java中是用int类型表示的。在为long类型赋值时我们会使用:long l = 123123123L;这是因为在赋值...
分类:其他好文   时间:2014-05-08 05:35:10    阅读次数:292
poj 2559 DP
两种解法。 我想到的是最大的矩形,中间一定有个最矮的某个单位矩形,所以用两个数组记录任何一个单位矩形histogram[i]左右两边第一个比它小的单位矩形的序号,这里找的时候用DP加速。 #include using namespace std; //the histogram stored from left to right long histogram[100001]...
分类:其他好文   时间:2014-05-08 01:59:37    阅读次数:443
java.lang.Integer can not be cast to java.lang.Long
java.lang.Integer can not be cast to java.lang.Long...
分类:编程语言   时间:2014-05-07 22:41:30    阅读次数:329
codechef The Morning Commute 题解
The Morning Commute The Chef commutes to work every day using the city's underground metro. The schedule for the trains has recently been changed and he wants to know how long it will take to tra...
分类:其他好文   时间:2014-05-07 15:37:11    阅读次数:406
You can Solve a Geometry Problem too (hdu1086)几何,判断两线段相交
You can Solve a Geometry Problem tooTime Limit: 2000/1000 MS (Java/Others) Memory Limit: 65536/32768 K (Java/Others)Total Submission(s): 6837 Accep...
分类:其他好文   时间:2014-05-07 01:14:20    阅读次数:395
C语言 获取文件大小的方法
作者 : 卿笃军 方法一: 获得文件大小需要用到2个函数:fseek() , ftell()fseek()函数: 原型:intfseek(FILE*stream, long offset, int fromwhere); 参数: stream:第一个参数stream为文件指针 of...
分类:编程语言   时间:2014-05-07 01:10:09    阅读次数:445
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!