Search Results

1
vote

Implementing a tree from scratch

What you describe isn't quite a radix tree... in a radix tree, you can have more than one character in a node, and there is no upper bound on the number of child nodes. What you' …
1
vote

Programming to an interface. How to decide where its needed?

Take a browse through the book Head-First Design Patterns... you'll see good arguments for using interfaces that have nothing to do with TDD or polymorphism. Interfaces all …