Browse by Tags

Related Posts

  • Discover OpenSource : NSketch (Sketch-based algorithms)

    As I was going through sourceforge, I noticed quite a few projects which are hidden in the depths of sourceforge's projects. For my own reference and for the few blog readers, I have decided to cover them here briefly. The first project is NSketch , which is written in C# by Joannès Vermorel...
    Posted to Nauman Leghari's Blog (Weblog) by laghari78 on 01-01-2007, 12:00 AM
    Filed under: .NET, OpenSource, C#, Algorithms
  • Discover OpenSource : NSketch (Sketch-based algorithms)

    As I was going through sourceforge, I noticed quite a few projects which are hidden in the depths of sourceforge's projects. For my own reference and for the few blog readers, I have decided to cover them here briefly. The first project is NSketch , which is written in C# by Joannès Vermorel...
    Posted to Nauman Leghari's Blog (Weblog) by laghari78 on 01-01-2007, 12:00 AM
    Filed under: .NET, OpenSource, C#, Algorithms
  • 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 project site here , or download DSA 0.2.3 . The...
    Posted to Granville Barnett (Weblog) by gbarnett on 11-18-2007, 12:00 AM
    Filed under: .NET, Data Structures, Algorithms, C#
  • 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 ToBaseN (Binary, Octal, Hex) Download...
    Posted to Granville Barnett (Weblog) by gbarnett on 02-21-2008, 12:00 AM
    Filed under: .NET, Data Structures, Algorithms, C#, Software Development, Open Source, DSA
  • CPU Scheduling Simulator (CPUSS) 0.2 released!

    This release includes a few new scheduling strategies including: Priority First (PF) Round Robin (varying time quantum) Download CPUSS 0.2 As you might expect in CPUSS 0.1 the Process type had no notion of a priority and by default all processes unless stated otherwise have a medium priority. RR - few...
    Posted to Granville Barnett (Weblog) by gbarnett on 02-15-2008, 12:00 AM
    Filed under: .NET, Algorithms, C#, Software Development, Open Source, CPU Scheduling, CPUSS
  • Creating a quick scheduling simulation using CPUSS

    Just a quick note, and most is self explanatory ( download CPUSS here ). I'll talk about the code after. using System; using System.Collections.Generic; using Cpuss; using Cpuss.Strategies; namespace ConsoleApplication1 { class Program { static void Main() { Runner runner = new Runner (20, 10, 65, new...
    Posted to Granville Barnett (Weblog) by gbarnett on 01-31-2008, 12:00 AM
    Filed under: .NET, Algorithms, C#, Open Source, CPU Scheduling, CPUSS
  • CPU Scheduling Simulator (CPUSS) 0.1 released!

    I have an interest in CPU scheduling strategies so I thought I would make a framework ( CPUSS ) by which you could use standard strategies (first-come-first-served, shortest job first, round robin, priority etc) and also create your own and gather metrics from the strategies execution given n processes...
    Posted to Granville Barnett (Weblog) by gbarnett on 01-30-2008, 12:00 AM
    Filed under: .NET, Algorithms, C#, Software Development, Research, Open Source, CPU Scheduling, CPUSS
  • 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 unordered Set will be introduced in DSA 0.4 as well...
    Posted to Granville Barnett (Weblog) by gbarnett on 12-24-2007, 12:00 AM
    Filed under: .NET, Data Structures, Algorithms, C#, Software Development, DSA
  • 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> does, that includes full LINQ support...
    Posted to Granville Barnett (Weblog) by gbarnett on 10-13-2007, 12:00 AM
    Filed under: .NET, Data Structures, Algorithms, C#, CLR, DSA
  • 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 make there debut (very simple ones - time was...
    Posted to Granville Barnett (Weblog) by gbarnett on 09-14-2007, 12:00 AM
    Filed under: .NET, Data Structures, Algorithms, C#, Software Development, DSA
Page 1 of 2 (19 items) 1 2 Next >
Page view counter