XYZ CODE
Learning java, javascript, HTML, CSS, shell, python with fun javascript games and videos
Site Search:
home
Java 8
Basic
Advanced
Java Concurrency
Algorithm
Python Algorithm
Java Algorithm
Tools
Splunk
Dynamic Web Project
soap web service
misc
Games
Resources
Blogger Tips
xyznetwork
IT Security
misc
books
About
Linked List
A linked list node has a value and a pointer to the next node. It is the building block of other data structure.
code:
class
Node {
private
Item
item
;
private
Node
next
;
}
Example:
implement a FIFO queue.
implement a Set.
reverse linked list
Newer Post
Older Post
Home