Tagged Questions
The backtracking tag has no wiki summary.
16
votes
5answers
2k views
N-queens in Haskell without list traversal
I searched the web for different solutions to the n-queens problem in Haskell but couldn't find any that could check for unsafe positions in O(1) time, like that one that you keep an array for the / ...
13
votes
9answers
517 views
algorithm to find longest non-overlapping sequences
I am trying to find the best way to solve the following problem. By best way I mean less complex.
As an input a list of tuples (start,length) such:
[(0,5),(0,1),(1,9),(5,5),(5,7),(10,1)]
Each ...
11
votes
2answers
522 views
Problem with recursive backtracking
got a problem here, i dont want a solution just some guidance.
Basically a set is passed to this method below, and a length of a bar is also passed in. The solution should output the numbers from the ...
9
votes
3answers
360 views
Interview question, recursion + backtracking
This question was asked in interview and deals with recursion/backtracking. Suppose we have two arrays of booleans:bool* source and bool* target,each of them the same length n(source/target/n are ...
9
votes
3answers
493 views
Have you used the Perl 5.10 backtracking control verbs in your regexes yet?
Have you used the Perl 5.10 backtracking control verbs in your regexes yet? And what problems did they help you accomplish?
Just as background: I have done some fiddling, but I can't get any ...
8
votes
2answers
443 views
Prolog GNU - Univ operator? Explanation of it
So the univ operator. I don't exactly understand it.
For example this:
foo(PredList,[H|_]) :- bar(PredList,H).
foo(PredList,[_|T]) :- foo(PredList,T),!.
bar([H|_],Item) :- G =.. [H,Item],G.
...
8
votes
4answers
985 views
How do I resolve the “Crypt Kicker” exercise proposed in “Programming Challenges (The Programming Contest Training Manual)”?
"Programming Challenges (The Programming Contest Training Manual)" is probably one of the nicest exercises book on algorithms.
I've resolved the first 11 exercises, but now I am stuck with "Crypt ...
6
votes
2answers
154 views
How to convert backtracking algorithm to stream?
Is there any way to define a stream with a backtracking algorithm in Scala ?
For instance, the following backtracking algorithm prints all "binary" strings of a given size.
def binaries(s:String, ...
6
votes
1answer
174 views
Does a combination of K integers exist, so that their sum is equal to a given number?
I've been breaking a sweat over this question I've been asked to answer (it's technically homework).
I've considered a hashtable but I'm kind of stuck on the exact specifics of how I'd make this work
...
6
votes
3answers
102 views
Improve a word search game worst case
Consider:
a c p r c
x s o p c
v o v n i
w g f m n
q a t i t
An alphabet i_index is adjacent to another alphabet j_index in the tile if i_index is next to j_index in any of the following ...
6
votes
3answers
322 views
Algorithm complexity question
During a recent job interview, I was asked to give a solution to the following problem:
Given a string s (without spaces) and a dictionary, return the words in the dictionary that compose the string.
...
5
votes
2answers
508 views
Recursive-backtracking algorithm for solving the partitioning problem
Hey, i'm looking for some help to find an algorithm which divides an array of positive numbers into k-parts so that each part has the (approximately) the same sum ... let's say we have
...
4
votes
2answers
165 views
How to get backtracking and IO using ListT?
I don't know really how exactly should the List transformer ListT be used. For example how should this simple task be done:
backtrack :: ListT IO ()
backtrack = do
x <- lift getLine
a ...
4
votes
5answers
2k views
How to Solve N-Queens Problem in Scheme?
I'm stuck on the extended exercise 28.2 of How to Design Programs.
Here is the link to the question: http://www.htdp.org/2003-09-26/Book/curriculum-Z-H-35.html#node_chap_28
I used a vector of true ...
3
votes
3answers
179 views
How to stop backtracking in Scala?
Suppose I am solving a problem (e.g. N-Queen) with backtracking. What if I want to find the only one (the 1-st) solution rather than all of them.
I guess I can do it imperatively (e.g. with a ...
3
votes
2answers
126 views
Algorithm required for this task?
Inputs: n (int) and n values (float) that represent exchange rates
(different between them) with a random value between 4 and 5.
Output: compute the maximum number of values that can be used ...
3
votes
3answers
200 views
Simplified Travelling Salesman in Prolog
I've looked through the similar questions but can't find anything that's relevant to my problem. I'm struggling to find an algorithm or set of 'loops' that will find a path from CityA to CityB, using ...
3
votes
4answers
284 views
DFS: How to indicate the nodes of the connected components in C++
I am making a problem of ACM competitions to determine the number of connected components that have an undirected graph G and vertices belonging to each component. 've Already done with a DFS ...
3
votes
1answer
214 views
All possible solution of the n-Queen's algorithm
When implementing an algorithm for all possible solution of an n-Queen problem, i found that the same solution is reached by many branches. Is there any good way to generate every unique solutions to ...
3
votes
1answer
287 views
Solving Knight's Tour with Backtracking (javascript)
I am trying to write an algorithm in javascript to solve the Knight's Tour problem using Backtracking, but it doesn't work. Basically, the function is supposed to output an array called visited, which ...
3
votes
1answer
177 views
sudoku solver infinite recusion
I am writing a sudoku solver. It has been a long time since I have touched prolog, thus I don't remember everything regarding unification, backtracking, etc. I think that I cause the system to ...
3
votes
1answer
414 views
Dynamic tree building with recursive backtracking
I have this problem that I need to solve a recursive backtracking issue. It looks a lot like the n-queen problem, but is different in the way that it uses different candidates with a a-symmetric ...
3
votes
3answers
325 views
Backtracking in scala parser combinators?
It seems like scala's parser combinators don't backtrack. I have a grammar (see bottom) which can't parse the following "stmt" correctly:
copy in to out .
That should be easy to parse with ...
3
votes
2answers
333 views
Backtracking in Erlang
First of all sorry for my English.
I would like to use a backtracking algorithm in Erlang. It would serve as a guessing to solve partially filled sudokus. A 9x9 sudoku is stored as a list of 81 ...
2
votes
1answer
156 views
How to improve recursive backtracking algorithm
I implemented backtracking based solution for my problem which I specified in my previous post: Packing items into fixed number of bins
(Bin is a simple wrapper for vector<int> datatype with ...
2
votes
1answer
85 views
Calculating minimum distance between two cities with pl/sql
I need to be able to calculate the minimum distance between two cities given a table that has the distances between pairs of cities. Two cities may not be connected directly, instead they may be ...
2
votes
3answers
133 views
Running out of heap when using recursive backtracking
I am currently studying the beautiful topic of recursive backtracking.
I've already tried classical examples like finding the shortest path out of a maze, or the n-queens problem. But the problem I'm ...
2
votes
3answers
293 views
Approximate string matching using backtracking
I would like to use backtracking to search for all substrings in a long string allowing for variable length matches - that is matches allowing for a maximum given number of mismatches, insertions, and ...
2
votes
1answer
66 views
Zero-or-more/one-or-more modifiers and backtracking
I was adding zero-or-more and one-or-more modifiers to my PEG parser, which is straightforward since there is so little backtracking in PEG. As we never reconsider earlier iterations, a simple while() ...
2
votes
1answer
411 views
open knight's tour (backtracking) algorithm in smlnj
I have to write SML code to solve knight's tour problem in backtracking. The chess knight must run all over the chessboard (size: NxN) and must visit each square exactly once (no need to come back in ...
2
votes
1answer
295 views
Java StackOverFlowError - Bad Recursive Call?
I'm given a set of strings called "dictionary", stored as a field, which represents a dictionary of words.
I am to write a method which accepts a String parameter ("phrase") and returns a set ...
2
votes
1answer
366 views
Recursive function calls - generate permutations and backtracking
I have a vector of strings, all of the same size.
I have to build as a solution a list of strings that fulfill some conditions.
The pseudo code algorithm would be something like this:
backtrack(N)
...
2
votes
1answer
207 views
LINQ - can it backtrack?
I am messing around with LINQ and I am curious to see what I can do with it. I would like to know if it is possible to have a LINQ query that imposes a condition over the resultant set. For example, ...
2
votes
4answers
795 views
Prolog, fail and do not backtrack
Is there any build-in predicate in SWI-Prolog that will always fail AND prevent machine from backtracking - it is stop the program from executing immediately (this is not what fail/0 does)?
I could ...
2
votes
1answer
1k views
Explain BFS and DFS in terms of backtracking
Wikipedia about DFS
Depth-first search (DFS) is an
algorithm for traversing or searching
a tree, tree structure, or graph. One
starts at the root (selecting some
node as the root in the ...
2
votes
2answers
458 views
backtracking in haskell
I have to traverse a matrix and say how many "characteristic areas" of each type it has.
A characteristic area is defined as a zone where elements of value n or >n are adjacent.
For example, given ...
2
votes
3answers
487 views
Parsec: backtracking not working
I am trying to parse F# type syntax. I started writing an [F]Parsec grammar and ran into problems, so I simplified the grammar down to this:
type ::= identifier | type -> type
identifier ::= ...
1
vote
1answer
48 views
backtracking algorithm to solve shortest path?
I have been extensively searching all over the net last night until today and I can't seem to find a resources discussing how to solve the shortest path problem by specifically using the backtracking ...
1
vote
1answer
59 views
Which regular expression requires backtracking?
There are three different solutions to implement regular expression matching: DFA, NFA and Backtracking. I am looking for examples:
a regexp, which can be solved with a DFA and the reason, why a DFA ...
1
vote
2answers
197 views
Prolog - Getting element from a list of lists
I am having trouble figuring out how to access a single character from a list of strings without using recursion, but instead backtracking.
For example I have this list of Strings and I want to be ...
1
vote
5answers
197 views
Recursive Backtracking Sudoku Solver Problems, c++
It's my first time dealing with recursion as an assignment in a low level course. I've looked around the internet and I can't seem to find anybody using a method similar to the one I've come up with ...
1
vote
3answers
144 views
8-Queens snippet
I have currently learning backtracking and got stuck on the 8-queen problem, I am using a 8x8 matrix and I think I've got some problems regarding the matrix passing to functions, any help would be ...
1
vote
3answers
104 views
Recursion and Backtraking [closed]
In a couple of weeks I have an exam for which I will have to know the recursive and backtraking methods.
Can anyone refer me to some good resources that can help me understand this methods (I only ...
1
vote
4answers
196 views
Java recursive backtracking problem
Having some trouble with this recursive backtracking problem:
"Write a method partitionable that accepts a list of integers as a parameter and uses recursive backtracking to discover whether the list ...
1
vote
2answers
153 views
using backtracking with tree
I'm using the backtracking algorithm in tree thanks to a stack (with push and pop).
It works but i've got a problem. The path given by the stack is "wrong".
bool Prefix(Node*root, stack *tas, char ...
1
vote
1answer
215 views
gdb disassemble: show function offsets in base 16
When disassembling functions, gdb will display memory addresses in base 16, but offsets in base 10.
Example:
(gdb) disassemble unregister_sysctl_table
Dump of assembler code for function ...
1
vote
4answers
138 views
Pattern matching problem with Prolog
EDIT: See my answer below for why I am a fool. There is still a riddle in this that I would love to have answered though.
I've been stuck on this for far too long. I'm trying to print out a sudoku ...
1
vote
1answer
258 views
Backtracking maze algorithm doesn't seem to be going all the way back
Basically, I have this: First, a bunch of code generates a maze that is non-traversable. It randomly sets walls in certain spaces of a 2D array based on a few parameters. Then I have a backtracking ...
1
vote
2answers
235 views
Maze not being random
Hey there, I am building a program that generates a maze so I can later translate the path to my graphical part. I have most of it working, however, every time you can just take the east and south ...
1
vote
1answer
278 views
StackOverflowError when running my “Knight's Tour” (it's pretty much finished otherwise)
I'm trying to make a program that goes through all squares of a chessboard (size doesn't really matter, but for now it's 6x6) with a knight, called a "Knight's Tour" check it out on wiki.
The tour is ...