Important alert: (current site time 7/15/2013 2:58:47 PM EDT)
 

winzip icon

A A Basic Linked List II

Email
Submitted on: 9/6/2005 2:50:37 AM
By: Ronald Holland  
Level: Beginner
User Rating: Unrated
Compatibility: Java (JDK 1.3)
Views: 8646
(About the author)
 
     This is the second installment of the introduction to Linked Lists. This is the second of a set of tutorials that will build on the preceding tutorial. The end result is a Car Parts application that uses a Linked List and random access to create and maintain persistent data. The functions are: 1- LinkedList() - Constructs an empty list. 2- LinkedList(int n, LinkedList ln) This Constructor is no longer used 3- add( int num ) - Inserts the specified element to this list in ascending sorted order. 4- addLast( int num) - Appends the given element to the end of this list. 5- addFirst( int num ) - Inserts the given element at the beginning of this list. 6- DisplayLL() - Displays the elements in the list to the screen 7- Remove(int num) - Deletes the specified element from the list. 8- isEmpty() - Determines if the list is empty. 9- contains( int num ) - Determines if the specified value is in the list. 10- toArray(int a[]) - Add each element in the list to the referenced array. 11- getLast() - Returns the last element in the list. 12- size() - Returns the size of the list i.e., the number of elements.

 

HTML:

Can't Copy and Paste this?
Click here for a copy-and-paste friendly version of this code!
//**************************************
//HTML for :A A Basic Linked List II
//**************************************
LL_Tutorial_2.html - is the tutorial
winzip iconDownload code

Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. Afterdownloading it, you will need a program like Winzip to decompress it.Virus note:All files are scanned once-a-day by Planet Source Code for viruses, but new viruses come out every day, so no prevention program can catch 100% of them. For your own safety, please:
  1. Re-scan downloaded files using your personal virus checker before using it.
  2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.

If you don't have a virus scanner, you can get one at many places on the net including:McAfee.com

 
Terms of Agreement:   
By using this code, you agree to the following terms...   
  1. You may use this code in your own programs (and may compile it into a program and distribute it in compiled format for languages that allow it) freely and with no charge.
  2. You MAY NOT redistribute this code (for example to a web site) without written permission from the original author. Failure to do so is a violation of copyright laws.   
  3. You may link to this code from another website, but ONLY if it is not wrapped in a frame. 
  4. You will abide by any additional copyright restrictions which the author may have placed in the code or code's description.


Other 24 submission(s) by this author

 


Report Bad Submission
Use this form to tell us if this entry should be deleted (i.e contains no code, is a virus, etc.).
This submission should be removed because:

Your Vote

What do you think of this code (in the Beginner category)?
(The code with your highest vote will win this month's coding contest!)
Excellent  Good  Average  Below Average  Poor (See voting log ...)
 

Other User Comments

 There are no comments on this submission.
 

Add Your Feedback
Your feedback will be posted below and an email sent to the author. Please remember that the author was kind enough to share this with you, so any criticisms must be stated politely, or they will be deleted. (For feedback not related to this particular code, please click here instead.)
 

To post feedback, first please login.