Skip to content

Instantly share code, notes, and snippets.

View anneomcl's full-sized avatar
🏇
Horsin' Around

Anne anneomcl

🏇
Horsin' Around
View GitHub Profile
@anneomcl
anneomcl / reverse_linked_list.cpp
Last active June 28, 2017 22:36
TheHappieCat: Reversing Linked Lists
// Example program
#include <iostream>
#include <string>
struct Node {
int data;
Node* next;
};
Node* create_node(int node_data){