PBCD.Algorithms 1.0.6705.25959

There is a newer version of this package available.
See the version list below for details.
dotnet add package PBCD.Algorithms --version 1.0.6705.25959
NuGet\Install-Package PBCD.Algorithms -Version 1.0.6705.25959
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="PBCD.Algorithms" Version="1.0.6705.25959" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add PBCD.Algorithms --version 1.0.6705.25959
#r "nuget: PBCD.Algorithms, 1.0.6705.25959"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install PBCD.Algorithms as a Cake Addin
#addin nuget:?package=PBCD.Algorithms&version=1.0.6705.25959

// Install PBCD.Algorithms as a Cake Tool
#tool nuget:?package=PBCD.Algorithms&version=1.0.6705.25959

See Algorithms, 4th Edition by Robert Sedgewick and Kevin Wayne

Here is the repository of this package.

The main name space is called Algorithms which includes the following sub name spaces:

  • ComputationalGeometry
  • DataStructure
  • Graphs
  • Randomization
  • SearchTree
  • Sort
  • ComputationalGeometry
    • ConvexHull: Gets a set of 2D points and returns a subset of them representing the smallest convex polygon that includes all points.
  • DataStructure
    • PriorityQueue: There are two implemented versions this DS, MaxPriorityQueue and MaxPriorityQueue.
    • UnionFind_QU: Uses Quick-Union algorithm for calculating connectec components in O(1). Each component is presented by a number.
  • Graphs
    • Digraph
      • Digraph: Represents a directed graph. This
      • TopologicalSort: Gets a digraph and return their IDs sorted topological
      • DirectedBFS: Gets a digraph and the index of the source vertex and calculates the path to every other vertex (if existing) using Depth-first search algorithm. HasPathTo(v) costs O(1) to check if there is a path to vertex v.
      • DirectedDFS: Same as DirectedBFS but uses Breadth-first search algorithm.
      • SCC_KosarajuSharir : Uses Kosaraju Sharir Algorithm (TopologicalSort class) to calcualte Strongly connected component
    • BipartiteGraph: Departs the graph into two groups if possible and returns true. Otherwise returns false
    • BreadthFirstPaths
    • DepthFirstPaths
    • ConnectedComponents
    • Graph
  • Randomization
    • WeightedRandom: Randomly select specified number of items from the list.The items with higher weight are in the result with higher probability.
  • SearchTree
    • BinarySearchTree
    • RedBlackTree: It is a Left Leaning Red-Black tree (LLRB Tree)
    • OST: Order Statistics Tree is a RedBlack tree which is able to return the rank of each elements
  • Sort : All sorts of sorts
Product Compatible and additional computed target framework versions.
.NET Framework net45 is compatible.  net451 was computed.  net452 was computed.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

This package has no dependencies.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.6717.20626 1,056 5/23/2018
1.0.6709.20566 942 5/15/2018
1.0.6705.25959 934 5/11/2018
1.0.6703.28604 942 5/9/2018

This is the first published package