Skip to content

Instantly share code, notes, and snippets.

@sisingh
sisingh / SLLasDLL.cpp
Created December 16, 2017 07:32
Singly Linked List as Doubly to move in both the directions
#include <iostream>
using std::cout;
using std::endl;
template < typename TYPE >
class NODE {
public:
NODE() {