Skip to content

Instantly share code, notes, and snippets.

@Janphr
Janphr / linked_list.h
Created November 29, 2019 13:34
generic linked list c++
//
// Created by s353498 on 11/29/2019.
//
#ifndef E6_LINKED_LIST_H
#define E6_LINKED_LIST_H
#include "node.h"
template<class D>