Skip to content

Latest commit

 

History

History
23 lines (20 loc) · 683 Bytes

README.md

File metadata and controls

23 lines (20 loc) · 683 Bytes

gosu-fundamentals

Programming fundamentals and common data structures implemented in Gosu https://gosu-lang.github.io/

Currently implemented data structures

  1. Stack + Queue Interfaces (Stack.gs + Queue.gs)
    1. LinkedList implementations for both (LinkedListStack.gs + LinkedListQueue.gs)
  2. List Interface (List.gs)
    1. LinkedList implementation (LinkedList.gs)
  3. Binary Tree Interface (Tree.gs)
    1. Binary Search Tree implementation (BinarySearchTree.gs)

Future Goals

  • Data Structures

    • Graphs
    • Hash Maps
  • Algorithms

    • Sorting Algorithms
      • Selection Sort
      • Insertion Sort
      • Quick Sort
      • Merge Sort