Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

2
votes
2answers
94 views

PHP deepening XML structure

given the following XML structure (i have this in an XML-file, with lots of other content - the <p> tags are just there to indicate that other tags may follow): <TITEL1>...</TITEL1> ...
2
votes
3answers
165 views

XSLT deepening content structure

given the following structure: <TITEL1>...</TITEL1> <p>..</p> <TITEL2>...</TITEL2> <TITEL3>...</TITEL3> <TITEL3>...</TITEL3> ...
1
vote
2answers
247 views

Iterative deepening vs depth first search

I keep reading about iterative deepening, but I don't understand how it differs from depth first search. So depth first search keeps going deeper and deeper I understand that. In iterative deepening ...
1
vote
1answer
208 views

tail call memory managment in haskell

I'm using the following control structure(which I think is tail recursive) untilSuccessOrBigError :: (Eq e) => (Integer -> (Either e a)) -> Integer -> e -> (Either e a) ...
1
vote
2answers
458 views

How can iterative deepening search implemented efficient in haskell?

I have an optimization problem I want to solve. You have some kind of data-structure: data Foo = { fooA :: Int , fooB :: Int , fooC :: Int , fooD :: Int , fooE :: Int } and a rating ...
1
vote
3answers
2k views

Difference between Breadth First Search, and Iterative deepening

I understand BFS, and DFS, but for the life of me cannot figure out the difference between iterative deepening and BFS. Apparently Iterative deepening has the same memory usage as DFS, but I am unable ...
1
vote
1answer
826 views

Iterative-deepening depth first search using limited memory

This is a follow-up to Find first null in binary tree with limited memory. Wikipedia says that iterative-deepening depth first search will find the shortest path. I would like an implementation that ...
0
votes
1answer
40 views

Minimax/ Alpha beta pruning Move Ordering?

I've read (for example, http://radagast.se/othello/Help/order.html) that searching on the best moves at each level first (which can be found using iterative deepening) makes the search go much faster. ...
0
votes
1answer
120 views

Writing a DFS with iterative deepening without recursion

So currently i have a DFS with the following pseudocode procedure DFS(Graph,source): create a stack S push source onto S mark source while S is not empty: pop an ...
0
votes
1answer
260 views

Complete Iterative Deepening Depth First Search

At the minute I have an object that looks a bit like this. C# public class Step { int id; List<Step> nextSteps; } And I'm trying to convert it into another object that looks pretty ...
0
votes
0answers
81 views

Breadth First Search Analysis

I have a large social network graph having millions of users similar to facebook. I need to find the shortest distance as well as the path from one user to another(both users may or may not be ...
0
votes
0answers
25 views

How is iterative deepening more efficient than just scanning the nodes at a specified depth level.

Isn't it redundant to rescan n-1 levels of nodes for each iteration?