Giter VIP home page Giter VIP logo

algorithm-night-gem's Introduction

algorithm night

###How to use this:

In your Gemfile:

gem 'algorithm-night'

or if you want to download to use in IRB:

$ gem install algorithm-night
$ irb
> require 'algorithm-night'
=> true

In IRB or your file you've had it in... you have the following structures/objects.

stack  = Stack.new              # pop, push, peek
queue  = Queue.new              # enqueue, dequeue, peek
linked = LinkedList.new         # add, delete
bst    = BinarySearchTree.new   # insert, exists

There are also some sorts, accessible via the Array class.

a = [3,4,2,1,5]
a.bubble_sort     # sorted array
a.selection_sort  # sorted array
a.merge_sort      # sorted array

#####If you are an attendee of Algorithm Night, the following bounty program exists:

Google'ing these if you haven't heard of them is a good place to start. Please talk to John to let him know you're working on it and the expectations accordingly.

  • Add #bucket_sort to the Array sorts
  • Add #shell_sort to the Array sorts
  • Add #radix_sort to the Array sorts
  • Add #quicksort to the Array sorts
  • Add #timsort to the Array sorts
  • Add methods such as #eixsts?(value) to Linked List
  • Make a CircularLinkedList
  • Make a DoublyLinkedList
  • Make a Queue and/or Stack out of the LinkedList class
  • Make a PriorityQueue out of a LinkedList of LinkedLists
  • Make a Heap
  • Make a Graph

For completion of each one, you will be rewarded accordingly based on its difficulty.

algorithm-night-gem's People

Contributors

johnakers avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.