Skip to content

Instantly share code, notes, and snippets.

View macbaszii's full-sized avatar
🏠
Working from home

iMacbaszii macbaszii

🏠
Working from home
View GitHub Profile
@macbaszii
macbaszii / LinkedList.cpp
Created December 3, 2012 05:18
[C/C++] LinkedList and Queue, Stack Implemented
#include <iostream>
using namespace std;
struct Node
{
int data;
Node *next;
};
struct HeadNode