The search-tree tag has no wiki summary.
15
votes
5answers
2k views
Knight's Shortest Path Chess Question
I've been practicing for an upcoming programming competition and I have stumbled across a question that I am just completely bewildered at. However, I feel as though it's a concept I should learn now ...
13
votes
4answers
700 views
What are the advantages of binary search trees with all elements stored in the leaf nodes?
I'm reading Advanced Data Structures by Peter Brass, and in the begining of the chapter on search trees, he stated that there is two models of search trees; one where nodes contain the actual object ...
7
votes
2answers
321 views
What are the advantages of T-trees over B+/-trees?
I explore the definitions of T-tree and B-tree/B+tree. From papers on the web I understand that B-trees perform better in hierarchical memory, such as disk drives and cached memory.
What I can not ...
5
votes
2answers
1k views
How to functionally generate a tree breadth-first. (With Haskell)
Say I have the following Haskell tree type, where "State" is a simple wrapper:
data Tree a = Branch (State a) [Tree a]
| Leaf (State a)
deriving (Eq, Show)
I also have a ...
1
vote
1answer
53 views
Completeness of depth-first search
I quote from Artificial Intelligence: A Modern Approach:
The properties of depth-first search depend strongly on whether the graph-search or tree-search version is used. The graph-search version, ...
0
votes
1answer
169 views
Ruby Search tree example confusion
I've been trying to take apart this app which creates a search tree based on keywords, but I'm afraid its a bit too complex for me. Would anyone mind explaining it?
The format is off, so here's a ...