3
votes
2answers
143 views

How can I convert this binary recursive function into a tail-recursive form?

There is a clear way to convert binary recursion to tail recursion for sets closed under a function, i.e. integers with addition for the Fibonacci sequence: (Using Haskell) fib :: Int -> Int fib ...
2
votes
2answers
93 views

index function for balanced binary tree

I have problem, i can't figure out how i must decide what sub-tree my function indexJ must to choose at the each step walks through the my balanced binary tree - JoinList. The idea is to cache the ...
4
votes
1answer
158 views

Rewriting trees

I have a data structure that represents a type signature, this data structure is a tree exemplified in the first picture as the red one. I would like to get the black one and so far I've only got the ...
3
votes
1answer
130 views

Build balanced binary tree with foldr

I write the function foldTree that build balanced binary tree from list. I must use foldr and it's ok, i used it, but i make insertInTree function recursive =( for now i know only this way to walk ...
-9
votes
1answer
154 views

Haskell function seeking explanation

data BTree a = Empty | Node (BTree a) a (BTree a) -- This is a node-labelled binary tree Could someone please explain be the following Haskell functions? labels :: BTree a -> [a] labels Empty = ...
0
votes
2answers
136 views

Finding element in a binary tree

Assume I have a binary tree: data Bst a = Empty | Node (Bst a) a (Bst a) I have to write a function that searches for a value and returns the number of its children. If there is no node with this ...
0
votes
1answer
253 views

Finding a leaf with value x in a binary tree

I have this question to do: "Define a function findpath:: BTree a -> a -> Path (where Btree a is defined as in the previous questions) that, given a binary tree t and a value x, returns a path ...
6
votes
1answer
559 views

Nicely printing/showing a binary tree in Haskell

I have a tree data type: data Tree a b = Branch b (Tree a b) (Tree a b) | Leaf a ...and I need to make it an instance of Show, without using deriving. I have found that nicely displaying a little ...
3
votes
2answers
230 views

Different binary tree's definitions in Haskell: which wins?

I was used to the following Tree definition: data Tree a = Empty | Node a (Tree a) (Tree a) until I ran into this one somewhere: data Tree a = Empty | Leaf a | Node a (Tree a) (Tree a) which ...
9
votes
2answers
1k views

Haskell: Flatten binary tree

I was thinking about flattening a binary tree to a list, for latter processing. I first thought of using (++) to join the left and right branches, but then thought in the worse case that would take ...
1
vote
3answers
170 views

finding the number of occurrences of a variable in a binary tree in haskell

i want to find the number of occurrences of some number in any tree.And here is my code but it gives an error which i can not find why it happens. data Tree a = Empty | Node (a ,Tree a,Tree a) ...
0
votes
2answers
661 views

Haskell, creating a binary search tree from a list

Can someone tell me why this code isn't producing what I want. data BST = MakeNode BST String BST | Empty add :: String -> BST -> BST add new Empty = (MakeNode Empty new Empty) ...
1
vote
2answers
1k views

delete node from binary search tree, haskell

I'm making a Haskell function to delete a node from a Binary Search Tree. I know the rules regarding the action needed to be taken depending on the number children the targeted parent has. no ...
0
votes
1answer
315 views

Converting List to Binary Search Tree, and the opposite

Using: data BST = MakeNode BST String BST | Empty My type declaration is listToBST :: [String] -> BST BSTToList :: BST -> [String] Also, I'm trying to use folding and list ...
1
vote
2answers
505 views

Adding a leaf to Binary Search Tree, Haskell

The type is defined as data BST = MakeNode BST String BST | Empty I'm trying to add a new leaf to the tree, but I don't really understand how to do it with recursion. the function is ...
0
votes
2answers
531 views

Finding the height of a binary search tree

I'm having trouble getting used to the recursion in Haskell, is there anyway someone could explain to me how I would go about this. I've looked at a bunch of other posts, but I can't figure out how to ...
0
votes
1answer
384 views

Haskell: Get path from every leaf node to root in a Bin tree structure

I've got work to do, but i dunno how to do it. I have Bin tree 1 / \ 2 3 / \ / \ 4 5 6 7 And I need to find the way from root to Node with the coord [i, j]. For example: (2, 2) ...
2
votes
3answers
172 views

Error handling using 'Either' inside a recursive function

Assuming a binary search tree, I would like to return an error in case we are trying to insert an element that is already there. Is there a way to make this work? data BST2 a = EmptyBST2 | Node2 a ...
1
vote
3answers
664 views

haskell binary tree function

I have to write a function in haskell that checks if two binary trees are mirror images of one another. This is what i have so far but i do not know if the True && areMirrorImages l1 r2 ...
2
votes
2answers
412 views

Right rotate of tree in Haskell: how is it work?

I don't know haskell syntax, but I know some FP concepts (like algebraic data types, pattern matching, higher-order functions ect). Can someone explain please, what does this code mean: data Tree ? ...
1
vote
4answers
3k views

Haskell Binary Tree Function (map)

How can I define a Haskell function which will apply a function to every value in a binary tree? So I know that it is similar to the map function - and that its type would be: mapT :: (a -> b) ...