摘要:
C/C++中判断某一文件或目录是否存在1.C++很简单的一种办法:#include#includeusingnamespacestd;#defineFILENAME"stat.dat"intmain(){fstream_file;_file.open(FILENAME,ios::in);if(!_file){cout
#include
#include voidmain(void)
{
/*Checkforexistence*/
if((_access("ACCESS.C",0))!=-1)
{
printf("FileACCESS.Cexis 阅读全文
摘要:
题目:给出n,求出最小的m,满足m^2 % 10^k = n,其中k=0,1,2http://acm.hdu.edu.cn/showproblem.php?pid=4394只要有一个x满足条件便行了我们可以初步发现,某个数个位确定,那么平方的最后一位肯定是确定的,那么如果后两们确定,那么平方的最后两们也是确定的,这可以通过乘法的规律得到那我们只需要BFS一下,不断地找满足最后指定位数的数,1位,2位,……直到找到第一个满足条件的。注意这里可能是100001这种情况所以记录当前数字大小,当前位置,可能暂时的高位为0,以后下一个添加的数为多少.// Time 0ms; Memory 316K#in 阅读全文
摘要:
drop table zrjReinUnClaimTmpT; create table zrjReinUnClaimTmpT ( mainid SERIAL not null, RepayNo varchar(25) not null, comCode varchar(8) not null, CaseNo varchar(25) not null, reinsType varcha... 阅读全文