Introduction
.Net 2 has introduced many annexes; among them the one I liked most is generics. Generics allows to created
abstraction over types and algorithms, which results into better type-safety and code-reusability. Classes and
algorithms written with generics are compact and easy to understand. Generics.Net is a well organized class
library which contains datastructures, algorithms, design patterns and other utilities in generic form.

Structure
Generics.Net, mainly structured into following namespaces.
  • Generic.Algorithms
    • Generic.Algorithms.Sorting
  • Generic.DataStructures
  • Generic.Patterns
  • Generics.Utils

Classes: Datastructures
IQueue<T>, IStack<T>, LinkedList<T>, LinkedListNode<T>, SinglyLinkedList<T>, 
SinglyLinkedListNode<T>,ListWithEvents<T>, Queue<T>, LinkedQueue<T>, 
SynchronizedQueue<T>, QueueWithEvents<T>, Stack<T>,SynchronizedStack<T>, 
StackWithEvents<T>, VisitableList<T>, RangedList<T>, Matrix<T>, 
CollectionBase<T>, BinaryTree<T>, BinaryTreeNode<T>

Classes: Algorithms
ISorter<T>, ISwapper<T>, ISortStragegy<T>, SortStrategy<T>, 
BubbleSortStrategy<T>, SelectSortStrategy<T>,InsertionSortStrategy<T>, 
MergeSortStrategy<T>, SelectSortStrategy<T>

Classes: Patterns
IComposite<T>, IVisitable<T>, Prototype<T>, Singleton<T>

Classes: Utils
ObjectComparer<T>, Operator<T>, GenericException<T>, ArgumentValidator<T> 


An Ongoing Project
Generics.net is an ongoing project. This is just a START, lost of works need to be done which involves
datastructure, algorithms, unit testing, examples and documentation. This project aim to become
primary generic library for .net development, so your ideas and contributions are required.

Post 0.3.0 Updates
  • Project added to source control
  • Implemented ShellSort in ShellSortStrategy<T>.
  • QuickSort in QuickSortStrategy<T>

Please not - Source code may not contain latest updates done after release.

- -
M. Aamir Maniar
http://www.aamirOnline.com

Generic DataStructures:

data-structure.gif

Generic Algorithms:

algorithm.gif

Generic Patterns:

pattern.gif

Generic Utilities:

utils.gif
Last edited Sep 21 2007 at 4:07 AM by aamironline, version 39

 

Want to leave feedback?
Please use Discussions or Reviews instead.

Archived page comments (2)

Updating...
© 2006-2009 Microsoft | About CodePlex | Privacy Statement | Terms of Use | Code of Conduct | Version 2009.6.1.15196