2
votes
1answer
37 views

Basic binary Tree in JavaScript

I wrote a basic binary tree in JS. Can anyone give me some feedback about my code? I just want to know if this is the right approach, and how I can improve the tree. I am new to JavaScript and data ...
3
votes
1answer
327 views

Parsing structured text in Java

I am quite new to Java. I have data structured like this: ...
5
votes
1answer
107 views

Simple prefix tree

I've written a simple function for building a prefix tree (and searching): ...
2
votes
2answers
526 views