请教各路英雄豪杰,那里有密码字典的算法函数!
高分相送!还提供MM。

解决方案 »

  1.   

    我也是从别处看到的,自己研究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::modecreate|cfile::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();
    }
     
      

  2.   

    我的开发环境是delphi6.0,刚才楼上兄弟给我的是JAVA函数。不过可以从中受到一些启发。
    还是要谢谢他。
      

  3.   

    我的开发环境是delphi6.0,刚才楼上兄弟给我的是c函数。不过可以从中受到一些启发。
    还是要谢谢他。
      

  4.   

    有用就好啊,哈哈,我只要你的分,不要mm了,请点击管理...hehe