-
-
内存写速度低于内存读的速度?
-
发表于:
2017-2-25 12:32
3575
-
最近在研究北信源U盘,用穷举法测试密码,在网上找了段穷举密码算法,发现内存读的速度约快于内存写的速度1倍以上,制约穷举速度主要是内存写的速度,是否是内存写速度低于内存读的速度?
网上抄的穷举算法代码
//*******************************************************************
//在许多情况下我们需要穷举组合的算法,比如密码词典。
//这个算法的要害是密码下标进位的问题。
//另外本例子中的写文件语句效率比较低,为了降低算法复杂度没有优化。
//假如要提高写文件的效率,可以使用缓冲区,分批写入。
//*********************************************breath.cnpick.com***** void createpassWord()
{
#define passwordmax 8//将生成密码的最大长度 char a[]="0123456789abcdefghijklmnopqrstuvwxyz";//可能的字符
long ndictcount=sizeof(a);//获得密码词典长度
char cpass[passwordmax+2];//将生成的密码
long nminl=1,nmaxl=3;//本例中密码长度从1-3
long array[passwordmax];//密码词典下标 assert(nminl<=nmaxl && nmaxl<=passwordmax);//容错保证
long nlength=nminl;
register long j,i=0;
bool bnext;
cstdiofile file;
file.open("c:\\dict.txt",cfile::modecreatecfile::modewrite);
while(nlength<=nmaxl)
{
for(i=0;i<passwordmax;i++)
array[i]=0;
bnext=true;
while(bnext)
{
for(i=0;i<nlength;i++)
cpass[i]=a[array[i>;
cpass[i]='\0';
file.writestring(cpass);
file.writestring("\n");
for(j=nlength-1;j>=0;j--)//密码指针进位
{
array[j]++;
if(array[j]!=ndictcount-1)break;
else
{
array[j]=0;
if(j==0)bnext=false;
}
} }
nlength++;
}
file.close();
}
测试情况
for(i=0;i<nlength;i++)
{
tttemp =CreackPwd[array[i]];//读内存
cpass[i] =tttemp;//写内存
}
分别注释循环中的两行,速度分别为1.2亿个密码/秒和0.4亿个密码/秒,内存写的速度低于读的速度。
哪位有好的穷举算法能提供个不。
[培训]内核驱动高级班,冲击BAT一流互联网大厂工作,每周日13:00-18:00直播授课