#include#include#include#include#includeusing
namespace std;typedef double dd;const dd pi=acos(0.0)*2;#define N 400005struct
P{ dd x,y; P(dd A=0...
分类:
其他好文 时间:
2014-05-17 03:38:45
阅读次数:
248
一、日期转换为字符串1.日期以特定的格式输出: // 创建日期并转换为yyyy-mm-dd格式
SimpleDateFormat sdf = new SimpleDateFormat("yyyy-MM-dd"); String datestr =
sdf.format(new Date()...
分类:
编程语言 时间:
2014-05-13 20:58:54
阅读次数:
261
/media : Mount point for removeable
mediaPurposeThis directory contains subdirectories which are used as mount
points for removeable media such as flo...
分类:
其他好文 时间:
2014-05-13 16:37:16
阅读次数:
362
建堆的时间复杂度是O(n),堆排序的时间复杂度是O(NLogN),具体算法如下所示:
#include
using namespace std;
void swap(int &i,int &j)
{
int temp=i;
i=j;
j=temp;
}
void shiftDown(int *A, int start,int len)
{
int temp=A[...
分类:
其他好文 时间:
2014-05-13 13:55:15
阅读次数:
270
在Linux中,对磁盘进行读写能力的测试,是一件非常必要的事情。虽然有一些很专业的软件去做这件事,但在某些情况下,由于技术能力限制,或用户并不需要很专业,这时就要考虑Linux内嵌命令dd了,它是一个简单易用,且功能略微强大的命令。一、首先要了解两个特殊的设备/dev/null..
分类:
系统相关 时间:
2014-05-13 12:50:44
阅读次数:
372
暴力出奇迹。。
#include
#include
#include
#include
#include
#include
#include
#include
using namespace std;
#define ll __int64
#define N 42
ll n,m,ans;
ll Gcd(ll x,ll y){
if(x>y)swap(x,y);
while(x){
y%=...
分类:
其他好文 时间:
2014-05-12 23:11:06
阅读次数:
445
1)登录的时候可以看到登录执行的PROCEDURE,此处为DBSPROC2、登录后,进入SDSF,再进入LOG,输入命令TOP,再输入命令F
JOB,按F11把屏幕向右翻页,看到哪下界面找到//IEFPDSI DD
DSN=xxxxxx.DISP=SHR此处可以找到ADCD.Z19.PROCLIB和...
分类:
其他好文 时间:
2014-05-12 06:44:20
阅读次数:
356
SimpleDateFormate sdf = new
SimpleDateFormate("yyyy-MM-dd HH:MM:ss");String s =
sdf.format(Date)然后这个s输出时的月份老是不对后来看了一下API"yyyy-MM-dd HH:MM:ss"这段室友讲究的M代...
分类:
编程语言 时间:
2014-05-12 03:05:56
阅读次数:
249
有一块新买的1T的移动硬盘。买来格式化成ntfs后简单的分了几次区。 4G的硬盘PE,100G的快速交互,剩余800多G分成了两个对等的存储盘。
插到电脑USB接口后, 桌面自动弹出了4个盘符。 打开前2个都没有什么问题, 写读都正常。后面两个一双击就会报错:
Error mounting: mount exited with exit code 1: helper failed wi...
分类:
移动开发 时间:
2014-05-11 20:51:27
阅读次数:
664
一、安装OEL 5.6
二、安装VMware Tools
1) 选择菜单里的VM选项,里面有一个子选项是installVMware Tools,选择它。
2) 回到操作系统,将光驱挂载到/mnt 下
[root@tyger~]# mount /dev/cdrom /mnt
mount:block device /dev/cdrom is write-protected, mou...
分类:
其他好文 时间:
2014-05-11 07:15:48
阅读次数:
431