DEV Community

Juan Sedano
Juan Sedano

Posted on • Originally published at jsedano.dev on

1

N-Queens backtraking

This is the N-Queens problem solution with a backtraking approach, look here for the N-Queens brute force approach.

If you are not familiar with the N-Queens problem look here for an explanation.

You can find the complete code for this post here: NQueensBacktracking.java.

The main difference from this one and the brute force approach is that we will check if a current permutation is a viable solution every time we add a queen, and if it’s not we will not continue pursuing that particular permutation:

static void findSolutions(LinkedHashSetWrapper perm, int n){
    if(perm.size() == n) {
        System.out.println(perm);
        return;
    }
    for(int i = 0; i < n; i++){
        if(!perm.contains(i)) {
            perm.add(i);
            if(isSolution(perm.copyInnerArray())){
                findSolutions(perm, n);
            }
            perm.removeLastElement();
        }
    }
}
Enter fullscreen mode Exit fullscreen mode

In the next image you can see a solution for N = 4 (clic to enlarge)

backtracking solution

Download the complete code from this post here NQueensBacktracking.java.

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

Top comments (0)

Billboard image

The Next Generation Developer Platform

Coherence is the first Platform-as-a-Service you can control. Unlike "black-box" platforms that are opinionated about the infra you can deploy, Coherence is powered by CNC, the open-source IaC framework, which offers limitless customization.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay