• Julian's Globe

    Singly-Linked List

    A data structure using references as an indicator of successive nodes.

    View more
    Doubly-Linked List

    An upgraded linked list in that there is now a reference to a previous node.

    View more
    Array

    A generic fixed-size data structure.

    View more
    Stack

    A LIFO data structure.

    View more
    Queue

    A FIFO data structure.

    View more
    Hash Table

    A key-value pair data structure.

    View more
    Binary Search Tree

    A tree type data structure.

    View more
    Heap

    A tree type data structure.

    View more
    K-Dimensional Tree

    Summary: A non-binary tree of K dimensions

    View more