Skip to content
View sean-custer's full-sized avatar

Block or report sean-custer

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse

Popular repositories Loading

  1. Arsiem-CRL-Launcher Arsiem-CRL-Launcher Public

    Cyber Range Launcher, complete with a frontend ISD interface, a backend hosted in Azure initialized from Terraform, and python scripts for interoperability and optimization.

    HCL 1

  2. Sally-FORTH Sally-FORTH Public

    Given a language in an arithmetic Reverse Polish Notation known as .sally, this project is designed to serve as an interpreter that handles stack operations, variables, comparison operators, logica…

    C++

  3. Incremental-Rehash Incremental-Rehash Public

    Hash table that, upon meeting certain conditions, rehashes clusters of data to another freshly allocated hash table.

    C

  4. Circular-Buffer-of-Circular-Buffers Circular-Buffer-of-Circular-Buffers Public

    Based on the idea of First in First Out (FIFO) Queues, this Data structure is made up of a Queue of Queues. Upon adding elements to the queue, once it exceeds it's capacity, another Queue is alloca…

    C++

  5. QuadTrees-for-Life QuadTrees-for-Life Public

    A QuadTree that serves as a dynamically resizing 2D grid, where each node holds either a 0 or a 1- representing dead or alive, motivated by Conways Game of Life. This tree-based data structure hold…

    C++

  6. Median-Heap Median-Heap Public

    Array based Heap data structure composed of two Binary heaps (Max and Min). The heaps keep track of three statistics: minimum, maximum and median. The data structure supports efficient insertion, a…

    C++