Skip to content

Instantly share code, notes, and snippets.

View ispapadakis's full-sized avatar

Yanni Papadakis ispapadakis

  • Papadakis Consulting LLC
  • Skillman, NJ
View GitHub Profile
@jayeshsolanki93
jayeshsolanki93 / SinglyLinkedList.java
Created April 10, 2014 17:29
Singly Linked List in Java
import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStreamReader;
class IntSLLNode {
public int info;
public IntSLLNode next;
public IntSLLNode(int i) {
this(i, null);