Skip to content

Instantly share code, notes, and snippets.

View p10rahulm's full-sized avatar

Rahul Madhavan p10rahulm

  • CodeFRA
  • Bangalore, India
View GitHub Profile
@p10rahulm
p10rahulm / create_static_site.MD
Last active March 6, 2024 02:09
Create Static Site using Godaddy and Google Cloud Storage in 15 minutes

Steps to create a static Site using Godaddy and Google Cloud Storage

Create a static html site

  • Can use this boilerplate to modify: http://www.initializr.com/
  • Make all your subpages and make sure to link them
  • Check your index.html works
@aagontuk
aagontuk / red-black-tree.c
Last active October 17, 2022 05:53
A RED-BLACK TREE Implementation
/*
* [PROG] : Red Black Tree
* [AUTHOR] : Ashfaqur Rahman <sajib.finix@gmail.com>
* [PURPOSE] : Red-Black tree is an algorithm for creating a balanced
* binary search tree data structure. Implementing a red-balck tree
* data structure is the purpose of this program.
*
* [DESCRIPTION] : Its almost like the normal binary search tree data structure. But
* for keeping the tree balanced an extra color field is introduced to each node.
* This tree will mantain bellow properties.