Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

algorithm-collection

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

algorithm-collection

Visualization and Audibilization of algorithms

  • 1.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

Algorithm Collection

build status

Visualization and Audibilization of algorithms.

Sorting algorithms

Sorting algorithmsTime complexitySpace complexityStability
Bubble sortO(n^2)O(1)yes
Bucket sortO(n+k)O(n*k)yes
Heap sortO(nlogn)O(1)no
Insertion sortO(n^2)O(1)yes
Merge sortO(nlogn)O(n)yes
Quick sortO(nlogn)O(1)no
Selection sortO(n^2)O(1)no
Shell sortO(nlog^2n)O(1)no
Bogo sortO(n·n!)[∞]O(n)yes
Time complexity(Average)
Space complexity(Auxiliary)

Graph[TODO]

  • Minimum Cost Spanning Tree
    • Prim
    • Kruskal
  • Shortest Paths Problem
    • Dijkstra
  • Topological Sort
  • Astar

Data Structures[TODO]


monitor.js

License

MIT Licensed. Copyright (c).

Keywords

FAQs

Package last updated on 18 Dec 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc