<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0">
  <channel>
    <title>'Linked Lists' Thread RSS Feed</title>
    <link>http://www.programmersheaven.com/</link>
    <description>Contains the latest posts from the thread 'Linked Lists' posted on the 'Java' forum at Programmer's Heaven.</description>
    <language>en</language>
    <copyright>Copyright 2013 Programmers Heaven</copyright>
    <pubDate>Wed, 19 Jun 2013 02:06:40 -0700</pubDate>
    <lastBuildDate>Wed, 19 Jun 2013 02:06:40 -0700</lastBuildDate>
    <generator>Argotic Syndication Framework 2007.3.0.1, http://www.codeplex.com/Argotic</generator>
    <docs>http://www.rssboard.org/rss-specification</docs>
    <ttl>360</ttl>
    <image>
      <url>http://www.programmersheaven.com/images/ph.gif</url>
      <title>Programmers Heaven</title>
      <link>http://www.programmersheaven.com/</link>
      <width>88</width>
      <height>31</height>
    </image>
    <item>
      <title>Linked Lists</title>
      <link>http://www.programmersheaven.com/mb/java/317445/317445/linked-lists/</link>
      <description>Hey! I just started learning java, and I am using this book called DATA Structures using JAVA. i am wondring if anyone has the sample of the code? if you do please post here.&lt;br /&gt;
&lt;br /&gt;
thanks&lt;br /&gt;
harry&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/317445/317445/linked-lists/</guid>
      <pubDate>Wed, 05 Oct 2005 20:42:45 -0700</pubDate>
      <category>Java</category>
    </item>
    <item>
      <title>Re: Linked Lists</title>
      <link>http://www.programmersheaven.com/mb/java/317445/317450/re-linked-lists/#317450</link>
      <description>: Hey! I just started learning java, and I am using this book called DATA Structures using JAVA. i am wondring if anyone has the sample of the code? if you do please post here.&lt;br /&gt;
: &lt;br /&gt;
: thanks&lt;br /&gt;
: harry&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
If you just started learning java, and have no previous programming experience, linked lists will prove to be extremely difficult to learn.&lt;br /&gt;
&lt;br /&gt;
Doesn't your book have code for a linked list?&lt;br /&gt;
&lt;em&gt;&lt;span style="color: Blue;"&gt;Just my 2 bits&lt;/span&gt;&lt;em&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/em&gt;&lt;/em&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/317445/317450/re-linked-lists/#317450</guid>
      <pubDate>Wed, 05 Oct 2005 22:29:17 -0700</pubDate>
      <category>Java</category>
    </item>
    <item>
      <title>Re: Linked Lists</title>
      <link>http://www.programmersheaven.com/mb/java/317445/317496/re-linked-lists/#317496</link>
      <description>my book has outline of code. not real programs that would run and give me the output.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/317445/317496/re-linked-lists/#317496</guid>
      <pubDate>Thu, 06 Oct 2005 07:42:45 -0700</pubDate>
      <category>Java</category>
    </item>
    <item>
      <title>Re: Linked Lists</title>
      <link>http://www.programmersheaven.com/mb/java/317445/317674/re-linked-lists/#317674</link>
      <description>: my book has outline of code. not real programs that would run and give me the output.&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
import java.util.LinkedList;
 // &lt;a href="http://java.sun.com/j2se/1.3/docs/api/java/util/LinkedList.html"&gt;http://java.sun.com/j2se/1.3/docs/api/java/util/LinkedList.html&lt;/a&gt;
 // also try Iterator class

public class LinkedListTest
{
 public static void main(String a[])
 {
    LinkedList LL = new LinkedList();
     LL.add("hello"); // add a new element
     LL.add("This is another element"); 
         // add another element to end of list
     LL.remove(0); // remove first element in list.
     LL.add("Last element in the list");
     System.out.println(LL.toString());
      // print out list
 }
}

&lt;/pre&gt;&lt;br /&gt;
&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/317445/317674/re-linked-lists/#317674</guid>
      <pubDate>Sat, 08 Oct 2005 00:06:25 -0700</pubDate>
      <category>Java</category>
    </item>
    <item>
      <title>Re: Linked Lists</title>
      <link>http://www.programmersheaven.com/mb/java/317445/317704/re-linked-lists/#317704</link>
      <description>: my book has outline of code. not real programs that would run and give me the output.&lt;br /&gt;
: &lt;br /&gt;
Are you looking to create your own Linked List class or just use one from the API?&lt;br /&gt;
&lt;em&gt;&lt;span style="color: Blue;"&gt;Just my 2 bits&lt;/span&gt;&lt;em&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/em&gt;&lt;/em&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/317445/317704/re-linked-lists/#317704</guid>
      <pubDate>Sat, 08 Oct 2005 10:59:39 -0700</pubDate>
      <category>Java</category>
    </item>
    <item>
      <title>Re: Linked Lists</title>
      <link>http://www.programmersheaven.com/mb/java/317445/317711/re-linked-lists/#317711</link>
      <description>yes it would be nice if program will run and give me some sort of output.&lt;br /&gt;
&lt;br /&gt;
thanks everyone for helping me.&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/317445/317711/re-linked-lists/#317711</guid>
      <pubDate>Sat, 08 Oct 2005 12:50:43 -0700</pubDate>
      <category>Java</category>
    </item>
    <item>
      <title>Re: Linked Lists</title>
      <link>http://www.programmersheaven.com/mb/java/317445/317960/re-linked-lists/#317960</link>
      <description>: yes it would be nice if program will run and give me some sort of output.&lt;br /&gt;
: &lt;br /&gt;
: thanks everyone for helping me.&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
If you've just started to learn Java, why don't you start from the beginning and actually learn to write a program that will run and produce output?&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/317445/317960/re-linked-lists/#317960</guid>
      <pubDate>Tue, 11 Oct 2005 03:15:22 -0700</pubDate>
      <category>Java</category>
    </item>
    <item>
      <title>program with output</title>
      <link>http://www.programmersheaven.com/mb/java/317445/317983/program-with-output/#317983</link>
      <description>: yes it would be nice if program will run and give me some sort of output.&lt;br /&gt;
: &lt;br /&gt;
: thanks everyone for helping me.&lt;br /&gt;
: &lt;br /&gt;
&lt;br /&gt;
Hey, copy and paste the code I've given earlier.  It should print the list.  It should give you the output you want.&lt;br /&gt;
&lt;br /&gt;
Did everyone skip my message?&lt;br /&gt;
&lt;br /&gt;
&lt;pre class="sourcecode"&gt;
import java.util.LinkedList;
 // &lt;a href="http://java.sun.com/j2se/1.3/docs/api/java/util/LinkedList.html"&gt;http://java.sun.com/j2se/1.3/docs/api/java/util/LinkedList.html&lt;/a&gt;
 // also try Iterator class

public class LinkedListTest
{
 public static void main(String a[])
 {
    LinkedList LL = new LinkedList();
     LL.add("hello"); // add a new element
     LL.add("This is another element"); 
         // add another element to end of list
     LL.remove(0); // remove first element in list.
     LL.add("Last element in the list");
     System.out.println(LL.toString());
      // print out list
 }
}
&lt;/pre&gt;&lt;br /&gt;</description>
      <guid isPermaLink="true">http://www.programmersheaven.com/mb/java/317445/317983/program-with-output/#317983</guid>
      <pubDate>Tue, 11 Oct 2005 06:01:50 -0700</pubDate>
      <category>Java</category>
    </item>
  </channel>
</rss>