Skip to content

lcarvajal/data_structures_elixir

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DsEx

Practicing data structures with Elixir.

Documentation for each data structure is under doc/index.html.

Getting started

Start the interactive shell within the project directory:

$ iex -S mix

Then, see how example data structures work using the execute function:

iex(1)> DsEx.StackExample.execute()
iex(2)> DsEx.QueueExample.execute()
iex(3)> DsEx.LinkedListExample.execute()
iex(4)> DsEx.BinarySearchTreeExample.execute()

Roadmap

  • Stack
  • Queue
  • Linked List
  • Binary Tree
  • Binary Search Tree
  • Hash Map (Dictionary)
  • Set
  • Graph
  • Heap (Priority Queue)
  • Trie (Prefix Tree)

Elixir commands

  • mix deps.get - get dependencies
  • mix docs - generate docs
  • mix test - run tests

Author

Lukas Carvajal

About

Building different data structures in Elixir with no llms or tutorials

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages