The search-tree tag has no wiki summary.
0
votes
0answers
60 views
Implementing Multi Way search trees In java
I just learnt how to implement a binary tree and search for data in a simple ordered structure. Now i wish to implement a multi-way search tree where I can search for items(e.g strings). What is the ...
1
vote
2answers
60 views
Finding the branch with all leaf nodes matching
Consider the following search tree:
(from http://lcm.csa.iisc.ernet.in/dsa/node87.html)
Given that leaf nodes will either be true or false, how can I find the branch (or branches) where all of the ...
0
votes
2answers
37 views
SearchTree.java:19: error: 'void' type not allowed here this.setRoot(this.insertgt(this.insertionSort(value)));
package ab12;
import java.util.Arrays;
searchTree class
public class SearchTree {
private TreeNode root;
private static int sum = 0;
public void setRoot(TreeNode n){
this.root = n;
}
...
0
votes
1answer
85 views
Can't rotate about the pivot in AVL Tree
I am trying to insert a new value into an AVL tree. The new insertion causes imbalance (as per the article at Wikipedia, this should belong to the left-right case), hence needs rotation. However, it ...
1
vote
1answer
102 views
searching within a Node on a CSB+ tree
I'm reading the paper, making B+-trees cache conscious in main memory. In Section 3.1.2, authors describe several approaches to searching within a CSB+ tree node.
Tha basic approach is to simply do ...
0
votes
2answers
492 views
Knight's shortest path graph data structure and algorithm
I have a question on one of the previous stackflow post @ Knight's Shortest Path Chess Question
I understand the reply on 'ok, it's a graph question, and its sparse matrix is like':
(a1,b3)=1,
...
3
votes
2answers
551 views
Is there a program that can draw a search tree of Prolog quieries?
I was wondering if there exists a tool that can draw a step-by-step search tree of a Prolog program? Thanks.
1
vote
1answer
813 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, ...
9
votes
2answers
569 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 ...
13
votes
4answers
2k 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 ...
6
votes
2answers
2k 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 ...
0
votes
1answer
286 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 ...
23
votes
6answers
6k 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 ...
