Algorithms and data structures implemented in many programming languages

This page summarizes the projects mentioned and recommended in the original post on news.ycombinator.com

InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
  • TheAlgorithms

    All Algorithms implemented in Python

  • Looks like it's licensed under the X11 license: https://github.com/TheAlgorithms/Python/blob/master/LICENSE....

  • CPython

    The Python programming language

  • Correct (actually a linked list of blocks[1]). It supports insertion and removal from both ends in O(1), which is very useful. However it does not support insertion and removal from the middle (via an iterator) in O(1), so it's not a complete replacement for doubly-linked lists.

    [1]: https://github.com/python/cpython/blob/a4ac14faa5c2be433738d...

  • InfluxDB

    Power Real-Time Data Analytics at Scale. Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.

    InfluxDB logo
  • Java

    All Algorithms implemented in Java

  • yeah I agree. I think it's because they pretty much allow contributions of algorithms from various people and the code review standards are not super high. I recall at one point the BFS algorithm in Java actually used an ArrayList (roughly equivalent to std::vector) for the queue, which is silly because popping from the front is O(N), so I had to submit a fix for that:

    https://github.com/TheAlgorithms/Java/pull/3231

    but I agree that basic low-hanging issues like this (and the exponential-time fibonacci that another commenter pointed out) really prevents me from taking this repo very seriously

  • woo

    A fast non-blocking HTTP server on top of libev

NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a more popular project.

Suggest a related project

Related posts

  • Wikifunctions

    1 project | news.ycombinator.com | 6 Dec 2023
  • Introduction

    1 project | dev.to | 8 Sep 2023
  • I am studying my college Python so can I learn algorithms from it?

    2 projects | /r/Python | 2 May 2023
  • Where To Read About Python Algos?

    1 project | /r/learnpython | 7 Apr 2023
  • Book of pythonic code

    1 project | /r/learnpython | 6 Apr 2023