Skip to main content
  1. Portfolios/

Datastructures & Algorithms in Elixir

2024

Quick Sort
·1095 words·6 mins· loading · loading
Quick Sort is the go-to sorting algorithm for many programmers due to its efficiency and elegance. Lets implement it in Elixir- Understanding the Algorithm Quicksort works on the principle of “divide and conquer”.
Merge Sort
·875 words·5 mins· loading · loading
Merge sort is a divide an conquer algorithm that relies solely on recursion to sort a list, making it the ideal algorithm to implement in Elixir.
Insert Sort
·976 words·5 mins· loading · loading
Insert sort is the defacto algorithm most programmers get started on their journey with. Lets see how to implement it in Elixir. Understanding the Algorithm Insert sort works by maintaining 2 lists.
Introduction
·225 words·2 mins· loading · loading
Data Structures & Algorithms in Elixir Introduction What happens if you learn Elixir as your first programming language? Follow along on this journey, as I learn Elixir and try to implement famous Data Structures and Algorithms in Elixir.