Upload Code
loading-left
loading loading loading
loading-right

Loading

Profile
No self-introduction
codes (1)
Make our own linkedlist data structure
no vote
this is an example of making a linked list data structure on our own. Using the same concept as those which already provided by Java. By doing this we'll learn more about linked list and hopefully we will be able to make adjustments in case we need our own special linked list data structure which wasn't provided by Java. ok let get it started..first we need a node/list kind of object, since linked list is a number of lists which is connected to one-another. first we need to make a node class. here's the code class Node { Object data; Node next; }
sueeez
2016-08-23
0
1
No more~