Skip to content

Instantly share code, notes, and snippets.

View bbcbjr's full-sized avatar

C-Eddard bbcbjr

  • Naples, Florida
View GitHub Profile
@Amadeeus
Amadeeus / singly_linked_list.cpp
Last active March 20, 2022 23:16
C++ Singly Linked List Implementation
#include <iostream>
template <typename T>
struct Node {
T data;
Node *next;
};
template <typename T>
class LinkedList {