Popularity
4.5
Stable
Activity
0.1
-
11
2
4
Programming language: Crystal
License: MIT License
Tags:
Algorithms And Data Structures
crystal-linked-list alternatives and similar shards
Based on the "Algorithms and Data structures" category.
Alternatively, view crystal-linked-list alternatives based on common mentions on social networks and blogs.
-
delimiter_tree
A tree structure that is built using a delimiter -
miller_rabin
Implements Miller-Rabin algorithm to check if a number is prime
Get performance insights in less than 4 minutes
Scout APM uses tracing logic that ties bottlenecks to source code so you know the exact line of code causing performance issues and can get back to building a great product faster.
Sponsored
scoutapm.com
Do you think we are missing an alternative of crystal-linked-list or a related project?
README
Crystal Linked List 
A simple linked list implementation in Crystal
Installation
Add this to a project's shards.yml
dependencies:
linked_list:
git: https://github.com/abvdasker/crystal-linked-list.git
Then run shards
Usage
require "linked_list"
list = LinkedList(Int32 | String).new
list.append(1)
list.push(2)
list << "foo"
list.peek # "foo"
list.pop # "foo"
list.pop # 2
list.unshift(1)
list.shift # 1