Skip to content

Instantly share code, notes, and snippets.

@MajsterTynek
MajsterTynek / reverse_double_linked_list.cpp
Last active February 25, 2017 15:15 — forked from anneomcl/reverse_linked_list.cpp
TheHappieCat: Reversing Double Linked Lists
// Example program
#include <iostream> // std::cout
#include <utility> // std::swap
using std::cout;
using std::swap;
struct Node {
int data;
Node* next;
Node* prev;