The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
4answers
96 views

Count paths in a matrix

This is a question from homework, that I got stuck with, and I'll be happy if someone could direct me. A legal path is defined, by statring at the first cell (row 0 collumn 0), and countinue to the ...
-2
votes
1answer
34 views

How does recursive backtracking work?

I'm preparing for my Java Final test when I came across this problem in a previous exam. the problem is written in another language so I'll try my best to explain it. you have a method public int ...
0
votes
1answer
66 views

does eight queens backtracking solution require any sorting at all?

Hi I have just sat my final year programming exam, I was asked the question: what sorting and searching algorithms are used to solve the 8 queens problem. Correct me if I am wrong but there is no ...
0
votes
1answer
116 views

Java Guava: Remove and put back elements from Multimap while iterating

What I'm trying to achieve is the following: While iterating over both the keys and values of a Multimap<K,V>, I want to remove and put back elements from this list. Any approach I've tried ends ...
1
vote
1answer
34 views

Java - Finding all possible forms of a word with vowels swapped

Given a word that contains vowels, I am trying to write a method that will discover all possible permutations of this word created by swapping out its vowels. For instance if the word is "root" the ...
-4
votes
0answers
106 views

knight tour on 8x8 board in c [closed]

Is there any possibility to implement a C program that solve the knight tour problem on 8x8 chessboard? I read that there are too many possibilities and a computer machine can't solve it. I am asking ...
7
votes
1answer
228 views

Implementing a backtrack search with heuristic?

I'm getting quite interested in search algorithms and backtrack programming. For now, I have implemented Algorithm X (see my other post here: Determine conflict-free sets? ) to solve an exact cover ...
1
vote
1answer
93 views

Dynamic programming or backtracking?

My friend gave me the following problem: Input: A matrix of letters and a word. Output: The frequency of the word in the matrix assuming you can move left, right, up and down in the matrix to form ...
0
votes
1answer
57 views

Stack overflow error bruteforcing a magic square. Any possible solution?

Here my problem, for an exercise I need to generate a magic square by bruteforcing it in backtracking. I thought it could be useful to allocate the matrix as a vector and a function that changes the ...
0
votes
0answers
16 views

ANTRL pretty error message in case of unbalanced brackits

My problem is if there is an unclosed parenthesis at the end of a document I got the error message: unexpected EOF. This is a bad message and I tried to avoid it. My grammar has a global ...
0
votes
0answers
73 views

sudoku backtracking-My code don't work

I am new in this web and I wanted to ask u help with a sudoku problem.. I don't understand because my sudoku work sometimes and it cannot resolve all sudokus that read in file. In this case to read my ...
0
votes
1answer
52 views

Prolog cut behaviour doesn't make sense to me

I've come across very strange behaviour (to me) regarding a particular cut. From what I understood, once the execution passes a cut, it cannot backtrack back above it. But that is exactly what this ...
0
votes
1answer
68 views

Backtracking for listing k elements

Can someone give me a hand here. I am new to backtracking and preparing for an interview. I couldn't even attempt this question. Please help. Describe a back tracking algorithm for efficiently ...
0
votes
1answer
54 views

Sudoku algorithm with backtracking does not return any solution

i'm a bit stuck with the Sudoku algorithm, i coded it using backtrack, and following the theorical steps this should work, and i tried to debuge it, but is too hard (and yes, it solve some numbers and ...
0
votes
1answer
37 views

Prolog Relational Tracking without Lists

I am trying to get a predicate to relate from 1 fact to another fact and to keep going until a specified stopping point. For example, let's say I am doing a logistics record where I want to know ...
1
vote
3answers
48 views

Improving maze search

I made a simple maze search algorithm that blindly runs into every direction of a cell to check if the goal has been found. It can find the goal, but the solution is still bad, because it doesn't ...
1
vote
2answers
119 views

N+1 queens algorithm

I'm looking to improve the speed of my algorithm to calculate the number of solutions to the N+1 queens problem (place N+1 queens on a NxN chessboard with 1 pawn). I'm basically using brute-force ...
0
votes
0answers
176 views

minimum graph coloring using backtracking

I am working an m_coloring problem wherein I have to determine the chromatic number m of an undirected graph using backtracking. The (java) solution I have thus far is increment m, try the m_Coloring ...
0
votes
0answers
137 views

sudoku solver with recursive backtracking not working as intended (Fixed!)

I'm making a sudoku program with a solver that uses a recursive backtracking algorithm, and a single-solution sudoku generator as a project for an online CS class I'm taking. However, the solver seems ...
0
votes
0answers
108 views

Recursive backtracking knights tour in c ++

So, in short I'm working on a knight's tour program. If you don't know what that is, the knight gets put on the chess board and you have to move it to every spot on the board exactly once. I'm using a ...
-1
votes
1answer
100 views

Error when using backtracking recursive algorithm to generate maze

I am creating a maze generator using the recursive backtracking algorithm. However, my problem is that every time I run the program it gives the following result: 1 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 ...
0
votes
1answer
69 views

Peg Solitaire can't find a solution with backtracking

I'm working on a solution for the game Peg Solitaire in Java. It appears however, that my solution is unable to solve the game. I'm working with the 'standard' version, so the board looks like : {2, ...
1
vote
2answers
1k views

unable to update metasploit framework

i am new to backtrack 5 r3. when i try to exec the command msfupdate i get the following error. An error occured while installing pg (0.15.0), and Bundler cannot continue. Make sure that gem ...
0
votes
0answers
71 views

Graph backtrack complexity

I'm trying to analyse the complexity of backtracking a graph in order to find the longest path. My algorithm consists of topological sort and then backtrack from each vertex in order to find the ...
2
votes
3answers
337 views

Understanding Sum of subsets

I've just started learning Backtracking algorithms at college. Somehow I've managed to make a program for the Subset-Sum problem. Works fine but then i discovered that my program doesn't give out all ...
0
votes
0answers
39 views

Assistance regarding Backtracking algorithms or similar algorithms for a organic chemistry conversion tool [closed]

I'm planning to do a organic chemistry conversion software which will help the user to enter the starting formula and the ending formula which will provide the formulas and reactants which took place ...
1
vote
1answer
72 views

Backtracking recursively with multiple solutions

function BACKTRACKING-SEARCH(csp) returns a solution, or failure return RECURSIVE- BACKTRACKING({ }, csp) function RECURSIVE-BACKTRACKING(assignment,csp) returns a solution, or failure ...
6
votes
1answer
243 views

Sudoku solve method

I've a problem with my sudoku solving method. The program works like this; the board is empty when started, the users adds a couple of numbers to the board and then by hitting a Solve-button the ...
1
vote
1answer
118 views

Java BackTracking with coins

Good afternoon, I am currently working on a program that should use a backtrack algorithm to find a solution for the total number of coins it will take to reach a certain amount. The basic layout of ...
1
vote
5answers
183 views

Sudoku solver, special case solving

I'm working on a sudoku solver with recursive backtracking which is pretty much finished except for one thing. If I would put duplicates somewhere within the puzzle (For example 1,1 in the top corner) ...
0
votes
1answer
284 views

How to get all possible solutions using backtracking algorithm?

I'm using the backtracking algorithm described in this youtube video. Now, I should be able to get ALL possible solutions. Am I able to do this with the backtracking algoritme and how? If not ...
0
votes
2answers
48 views

Select Redoing Until Failure, Why?

I have the following function: fillNonDrivers(Car, Pmd, Plo, ListOfPassengers) :- select(Passenger, Pmd, Plo1), Passenger = [_,n,_], /* etc */ I invoke it with trace on in the following way: ...
3
votes
1answer
126 views

How to backtrack a pointer?

Let say I have 2 pointers pointing to the same memory location. If I know what the address it is, how can I find out what pointers are pointing to that location? int x=5; int* p1=&x; int* ...
2
votes
1answer
174 views

Sudoku Backtracking Non valid Sudoku

I created a Sudoku Backtracking solver and it works just fine, but now i want to give out an error if the sudoku cant be solved because it isnt valid for example if this sudoku is given: ...
0
votes
0answers
185 views

Backtrack 5r3 metasploit firefox unable to connect after typing msfconsole

does anyone know what is wrong? I am unable to connect when I type https://localhost:3790 after typing msfconsole.
1
vote
1answer
148 views

Block Puzzle solving C++ algorithm

I want to make an algorithm for solving Block Puzzles, but as efficient as possible. I already did the easy- way (a backtracking). I represented everything as matrices- the big matrix the pieces have ...
0
votes
2answers
54 views

How can you add elements to a list or compute them from the knowledge base without using findall or assert/retract in Prolog?

I have a knowledge base that consists of students database in a file 'students.pl' like this: % student(Name,Percent,List_of_Marks_in_3_subjects). student('abc',83,[80,80,90]). ...
2
votes
1answer
494 views

n-queens puzzle in java using stacks and backtracking

This is my code for the n-queens problem in java. However, the output is 0 (the number of solutions to 8 queens in this case) when it should be 92. We're supposed to only use stacks and backtracking ...
1
vote
1answer
79 views

Delay recursive backtracking java

I found this sudoku solver which use backtracking when it is trying to solve the puzzle and for better understanding I would like to delay the process so I can analyse the backtracking. But I don't ...
0
votes
1answer
183 views

Sudoku solver backtracking

I'm browsing through some sudoku solvers and I'm looking for one that utilizes backtracking, now I've found this code but I'm not really sure whether it uses backtracking or some other algorithm? ...
0
votes
1answer
108 views

Java sudoku solver incomplete output, what could be wrong? [closed]

The first problem I had with my code is that I couldn't find a way to simply display the solved puzzle. I could only place the display method in the solve method for it to be able to print anything. ...
0
votes
2answers
61 views

Recursion + backtracking. What to return?

I've run into a few of these problems and never really knew the best way to deal with it. If I'm writing a recursive function and building up an answer, but find out the current answer won't work, ...
0
votes
2answers
81 views

Can't do backtrack research in OCaml

I am trying to solve the puzzle 15 game in OCaml. I almost did everything.. except for the core function of the program, the depth first search function. This is what my function looks like now: let ...
0
votes
3answers
112 views

Recursive function building

I'm trying to write a function that explores all possible combinations of numbers , given as an array , in hopes to find the minimal group of numbers that add up to a certain amount , which is passed ...
1
vote
1answer
82 views

How to backtrack in regular expression

I'm trying to validate url which doesn't contain login before .com at the end, but the regex at here is not validating the url properly. I've used the lazy quantifier, but it is still consuming ...
0
votes
1answer
100 views

Sudoku Solving - Skip on stage in backtracking

I already asked for help here, but nobody answer, and it really frustrating, I am trying to write a code that solve a Sudoku in recursive function (backtracking), here is the code: #include ...
1
vote
0answers
141 views

Sudoku Solving with backtracking algorithm

I saw this lecture on youtube: http://www.youtube.com/watch?v=p-gpaIGRCQI and there is the code i wrote: int _Solve(int iRow, int iCol) { if (iRow == 9) return 1; if (arrBoard[iRow][iCol]) ...
4
votes
1answer
146 views

Finding paths in undirected graph with specific cost

Suppose we have undirected, weighted graph. Our task is to find all paths beetween two vertices (source and destination) which total cost equal = N. I think it can be done with modified Dijkstra's ...
-2
votes
2answers
684 views

Knights Tour algorithm in Java [closed]

I'm working on a Knights Tour problem in Java, but my code below results in a tour that never completes. The only thing that is not self-explanatory is the public Integer array, moves, is an array ...
1
vote
2answers
72 views

Finding fastest cycle that gains at least x bonus points using backtracking algorithm

There's a map with points: The green number next to each point is that point's ID and the red number is the bonus for that point. I have to find fastest cycle that starts and ends at the point #1 ...

1 2 3 4 5