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 April 2, 2025 14:34
C++ Singly Linked List Implementation
#include <iostream>
template <typename T>
struct Node {
T data;
Node *next;
};
template <typename T>
class LinkedList {