Skip to content

Instantly share code, notes, and snippets.

View xnorcode's full-sized avatar
🛠️
building stuff

Andreas Ioannou xnorcode

🛠️
building stuff
View GitHub Profile
@xnorcode
xnorcode / LinkedListPrintAll.java
Last active May 3, 2018 21:10
Linked List Print All Nodes
public class LinkedList<T> {
// Reference to the head node
Node head;
public void printAll(){
// get reference to the head node
Node next = head;
@xnorcode
xnorcode / LinkedListNodeClass.java
Last active May 3, 2018 21:10
Linked List Node Class
public class LinkedList<T> {
// Reference to the head node
Node head;
// node class
class Node {
// Node data
T data;