Granville Barnett

Browse by Tags

All Tags » Data Structures (RSS)
DSA 0.5 released!
It's been a while, I've had to work on other stuff for the last 2 or so months which has rendered me with no time. That's the excuses out of the way... Not much added in this release I would simply point you to the release page for more details. A friend...
DSA Recap
Some of you will no doubt know that I started a project a while ago now that was intent on bringing implementations of various algorithms and data structures to .NET - but with a different take on things. Well, after a recent detour with CPUSS (a project...
DSA in review so far
Data Structures and Algorithms (my project on CodePlex ) has been an awesome success to date, and continues to grow with every increment and I couldn't be happier about it. First I must say that for me DSA is really a side side project, so increments...
DSA 0.4 released!
The latest version of the Data Structures and Algorithms (DSA) library is out! Download DSA 0.4 This latest release contains the following additions: QuickSort<T> UnorderedSet<T> Heap<T> ShellSort<T> InsertionSort<T> RepeatedWordCount...
DSA 0.3 released!
Just before Christmas as well :-) Download DSA 0.3 New features for this release include: Probability Search Power algorithm Greatest common denominator algorithm Reverse words algorithm Set collection (will be renamed to OrderedSet in DSA 0.4 and an...
DSA 0.2.3 released
This is a minor release but the Data Structures and Algorithms (DSA) library continues to expand. Some new additions in DSA 0.2.3 include BinarySearchTreeCollection<T>, and a host of new algorithms, utility methods and issue resolutions. Visit the...
Profiling some data structures
I don't know why but I randomly decided to see how well my SinglyLinkedListCollection<T> fared against the LinkedList<T> collection in System.Collections.Generic. First off, my implementation supports pretty much everything that the MS LinkedList<T>...
DSA 0.2 released
The 0.2 release of DSA has just been released, features for this release include: ArrayListCollection(Of T) DoublyLinkedListCollection(Of T) SinglyLinkedListCollection(Of T) StackCollection(Of T) QueueCollection(Of T) There are also a few algorithms that...
DSA 0.1 released
Today, I pushed the release button on a little project I've been doing over on CodePlex entitled Data Structures and Algorithms (DSA) . The story of the project is to basically go ahead and without looking at the .NET source create custom implementations...
Debug proxies for custom collections to aide debugging in Visual Studio
I stumbled across this while working on a small project ( Data Structures and Algorithms (DSA) ). Creating a proxy for a type, or whatever really - in my case a collection is really simple and provides some really cool results in the locals window when...
More Posts