Giter Club home page Giter Club logo

algorithmia's Introduction

Algorithmia

Algorithm and data-structure library for .NET 4.5.2+ / Netstandard2.0+. Algorithmia contains sophisticated algorithms and data-structures like graphs, priority queues, command, undo-redo and more.

Algorithmia is one of the pillars of LLBLGen Pro v3 and up and is used in production successfully since May 2010. Many of the classes and algorithms in Algorithmia contain references to papers and articles on Wikipedia or other websites where you can find additional information regarding the algorithm or data-structure implemented.

The core design of Algorithmia is about making algorithms and data-structures which are known for many years available to the .NET developer in easy to use and properly documented classes and methods. No class or method implemented in Algorithmia re-implements a .NET BCL (base class library) class or method unless it was necessary to do so (e.g. the linked list in .NET is re-implemented as it doesn't have an O(1) concat operation, which is necessary for the Fibonacci heap).

Although Algorithmia is stable since May 2010, we still update it with new algorithms and data-structures. If you have algorithms or data-structures to contribute, please create a fork and send us a pull request! :)

Getting a binary version via NuGet

Algorithmia is also available on Nuget. When you obtained Algorithmia via Nuget, it's recommended you check out the unit tests in this source repository and/or look at the SD.Tools.Algorithmia.chm reference manual included in the source repository, which is generated from the sourcecode.

License

Algorithmia is © 2010-2018 Solutions Design bv and is released under the BSD2 license.

algorithmia's People

Contributors

fransbouma avatar majerm avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

algorithmia's Issues

[Wiki] Third-level headers all broken

On the “Features at a glance” wiki page, all third-level headers are broken. They’re missing spaces after the triple hash.

Unfortunately, GitHub does not offer pull requests for wiki repositories, so I can’t fix it.

Starting an undoable period with a command with a before/after action executes them twice

When executing a command using the PerformUndoablePeriod method on the command manager using a command with a before/after action, the command is executed normally through the pipeline to get it properly enqueued, and as it's empty by design, nothing should happen, however the before/after action will be executed, so these actions will be executed twice.

MultiValueDictionary.Clone() do not clone inner HashSet value container

I mean it is a bug, because it is inner implementation structure. In my case it was a problem. I did not create pull-request, because fix is breaking change.
In my version it is fixed like this:

	public class MultiValueDictionary<...>

		private IEqualityComparer<TKey> _keyComparer;

                ....
		public MultiValueDictionary(IEqualityComparer<TKey> keyComparer, IEqualityComparer<TValue> valueComparer) : base(keyComparer)
		{
			_keyComparer = keyComparer;
			_valueComparer = valueComparer;
		}

		public MultiValueDictionary<TKey, TValue> Clone()
		{
			var clone = _keyComparer == null
				? new MultiValueDictionary<TKey, TValue>(_valueComparer)
				: new MultiValueDictionary<TKey, TValue>(_keyComparer, _valueComparer);
			foreach (var entry in this)
			{
				clone.Add(entry.Key, new HashSet<TValue>(entry.Value, _valueComparer));
			}
			return clone;
		}
                ....

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.