gpt4 book ai didi

java - 这个程序应该能够猜测 7 个字符的密码吗?

转载 作者:行者123 更新时间:2023-12-02 01:10:58 25 4
gpt4 key购买 nike

我创建了这个程序,它应该猜测 7 个字符的密码。当我运行它时,什么也没有发生。这个程序正确吗?如果有什么不对的地方,请告诉我要改变什么。代码如下:

import java.util.Scanner;

public class Main {
public static void main(String[] args) {
Scanner inputReal = new Scanner(System.in);
System.out.println("Enter real password (7 characters):");
String realpassword = inputReal.nextLine();
String finalpassword = "";
char real1 = realpassword.charAt(0);
char real2 = realpassword.charAt(1);
char real3 = realpassword.charAt(2);
char real4 = realpassword.charAt(3);
char real5 = realpassword.charAt(4);
char real6 = realpassword.charAt(5);
char real7 = realpassword.charAt(6);

CharSequence avaliableChars = "1234567890qwertyuiopasdfghjklzxcvbnm!@#$%^&*()?";





char guess1;
char guess2;
char guess3;
char guess4;
char guess5;
char guess6;
char guess7;
boolean notFound = true;
while(notFound) {

for(int i1 = 0; i1<47 && notFound == true; i1++) {
guess1 = avaliableChars.charAt(i1);
for(int i2 = 0; i2<47 && notFound == true; i2++) {
guess2 = avaliableChars.charAt(i2);
for(int i3 = 0; i3<47 && notFound == true; i3++) {
guess3 = avaliableChars.charAt(i3);
for(int i4 = 0; i4<47 && notFound == true; i4++) {
guess4 = avaliableChars.charAt(i4);
for(int i5 = 0; i5<47 && notFound == true; i5++) {
guess5 = avaliableChars.charAt(i5);
for(int i6 = 0; i6<47 && notFound == true; i6++) {
guess6 = avaliableChars.charAt(i6);
for(int i7 = 0; i7<47 && notFound == true; i7++) {
guess7 = avaliableChars.charAt(i7);
String guessedpassword = "" + guess1 + guess2 + guess3 + guess4 + guess5 + guess6 + guess7;
if(guessedpassword.equals(realpassword)) {
finalpassword = guessedpassword;
notFound = false;
}
}
}
}
}
}
}
}
}
System.out.println("Guessed password:" + finalpassword);
}

我运行了它,只等了大约 3-5 分钟。输入真实密码后没有任何反应。

最佳答案

是的,该程序可以运行,我刚刚使用简单的密码“1111115”对其进行了测试。

问题只是暴力破解的时机太疯狂了。时间复杂度为 O(n^7),并且给定任何不以数字开头的密码,例如“a111111”,计算机至少执行 1.07x10^10 次操作,即超过 100 亿次操作,这将需要相当长的时间。很长时间。

不过,为了保证您的算法有效。

奖励:试验一下您的计算机执行操作的速度。这个 500 亿次循环的程序实际上在我的计算机上运行大约需要 14 秒,所以修改它,看看如何使您的原始程序更快!

public class fast {
public static void main(String[] args) {
long startTime = System.currentTimeMillis();
long x = 1000000000;
String s = "abc";
boolean bool = true;
for (int j = 0; j < 50; ++j) {
for (int i = 0; i < x; ++i) {
char a = s.charAt(2);
// try different things, like using arrays instead of strings, etc.
}
}

long endTime = System.currentTimeMillis();
System.out.println("took " + (endTime-startTime) + " ms);
}
}

关于java - 这个程序应该能够猜测 7 个字符的密码吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59417596/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com