Skip to content

Instantly share code, notes, and snippets.

View IsaacCisneros's full-sized avatar
💭
...uploading myself to the blockchain.

Isaac Cisneros IsaacCisneros

💭
...uploading myself to the blockchain.
View GitHub Profile
/*Queue - Linked List implementation*/
#include<stdio.h>
#include<stdlib.h>
struct Node {
int data;
struct Node* next;
};
// Two glboal variables to store address of front and rear nodes.
struct Node* front = NULL;
struct Node* rear = NULL;
@IsaacCisneros
IsaacCisneros / introrx.md
Created November 3, 2015 12:52 — forked from staltz/introrx.md
The introduction to Reactive Programming you've been missing