Skip to content

Instantly share code, notes, and snippets.

@karellism
Created February 28, 2019 09:07
Show Gist options
  • Save karellism/ea4abb717108ccfc7361fc6dfd103027 to your computer and use it in GitHub Desktop.
Save karellism/ea4abb717108ccfc7361fc6dfd103027 to your computer and use it in GitHub Desktop.
Linked list example in Java
// Linked list class
class ListNode
{
// head of list
Node head;
// Node class
class Node
{
int val;
Node next;
// Constructor to create a new node
Node(int v) {
val = v;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment