Related questions
best linked list in ruby WITHOUT extending array?
What is the best way to implement a linked list in Ruby without using/extending the Array class? This is an implementation that I've used in the past, but it doesn't seem like the best way to go about it:
…