python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Visualisation of binary search tree in terminal
I am looking for a Python tool to visualize a binary search tree and also do insert and delete operations.
Something like this:
50
\
70
/ \
/ \
63 90
insert(50)
insert(70)
insert(90)
inser...
duffy6
Votes: 0
Answers: 2
Algorithm - Minimum items required per Set
The user add the items in the cart and I need to give him the best combination of combos (sets) available for the items, so he can get the best possible price. If an item doesn't fit in a combo (set) ...

Henrique
Votes: 0
Answers: 0
Counting the leaves of a binary tree using recursion: the final return statement of (recursive function)+(recursive function)
I have been learning binary trees lately and have looked through the code for counting the leaves.
This is the recursive function to count the leaves:
def __count_leaves_recursive(self, node):
if...
James
Votes: 0
Answers: 1
How to pass a Tree as an argument in a function?
I want to pass a Tree as an argument in a function. In fact, what I want is to pass an object from the class Node as an argument to my function evaluate.
This is the code.
PLUS = "+"
MIN...
Luciano Muratore
Votes: 0
Answers: 1