Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

linked list Introduction

    public class Node {
        int data;
        Node next;  // reference to next object in the sequence
    }
  		    
Source by www.cs.umd.edu #
 
PREVIOUS NEXT
Tagged: #linked #list #Introduction
ADD COMMENT
Topic
Name
5+5 =