Like This Site? 
 
RSS Feed Follow Us 

on Twitter! Be Our Fan!

Double Linked Lists Implementation in Java

Share this post!
 Vote this!

Before you can start this tutorial, you're supposed to have knowledge of:

  • Interfaces
  • Basic Java operations
  • Exceptions
  • Generics
  • Basic knowledge of Object Oriented Programming (Inheritance)


So what will we be doing in this tutorial? We're going to use a double linked list in order to implement a Queue. As Java does not comes with a Double Linked List, we will program our own. Therefore, this tutorial is split up in two parts, the first part (which is this tutorial) will cover the double linked list, while the second part will cover the Queue.

Let's start with the definition of a double linked list. Consider a linked list:

1Head ---> Node ---> .... Node ----> Tail ---> NULL  more...

0 comments:

Post a Comment