Skip to content

Instantly share code, notes, and snippets.

View newPrimitives's full-sized avatar

Nermin Šehić newPrimitives

View GitHub Profile
@newPrimitives
newPrimitives / StackLinkedList.cpp
Created October 31, 2016 13:29
Stack implementation using Linked List in C++
//
// main.cpp
// Lab
//
// Created by Nermin Sehic on 10/30/16.
// Copyright © 2016 Nermin Sehic. All rights reserved.
//
#include<iostream>
using namespace std;
@newPrimitives
newPrimitives / StackArray.cpp
Created October 31, 2016 13:29
Stack implementation using array in C++
//
// main.cpp
// Lab
//
// Created by Nermin Sehic on 10/30/16.
// Copyright © 2016 Nermin Sehic. All rights reserved.
//
// Stack using array
#include <iostream>
@newPrimitives
newPrimitives / QueueLinkedList.cpp
Created October 31, 2016 13:29
Queue implementation using Linked List in C++
//
// main.cpp
// Lab
//
// Created by Nermin Sehic on 10/30/16.
// Copyright © 2016 Nermin Sehic. All rights reserved.
//
#include<iostream>
using namespace std;
@newPrimitives
newPrimitives / QueueArray.cpp
Created October 31, 2016 13:28
Queue implementation using Array in C++
//
// main.cpp
// Lab
//
// Created by Nermin Sehic on 10/30/16.
// Copyright © 2016 Nermin Sehic. All rights reserved.
//
// Stack using array
#include <iostream>