<?xml version="1.0"?>
<rss version="2.0">
   <channel>
      <title> by Ramlah Mailok</title>
      <link>https://padlet.com/ramlahmailok/h3rjak28rw0t</link>
      <description></description>
      <language>en-us</language>
      <pubDate>2015-07-06 00:23:51 UTC</pubDate>
      <lastBuildDate>2017-05-17 03:14:08 UTC</lastBuildDate>
      <webMaster>hello@padlet.com</webMaster>
      <image>
         <url></url>
      </image>
      <item>
         <title>Linked List - Contoh aturcara http://stackoverflow.com/questions/10042/how-do-i-implement-a-linked-list-in-java</title>
         <author>ramlahmailok</author>
         <link>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64163089</link>
         <description><![CDATA[<p>class Link {<br>    public int data1;<br>    public double data2;<br>    public Link nextLink;<br><br>    //Link constructor<br>    public Link(int d1, double d2) {<br>	    data1 = d1;<br>	    data2 = d2;<br>    }<br><br>    //Print Link data<br>    public void printLink() {<br>	    System.out.print("{" + data1 + ", " + data2 + "} ");<br>    }<br>}<br><br>class LinkList {<br>    private Link headptr;<br><br>    //LinkList constructor<br>    public LinkList() {<br>	    headptr = null;<br>    }<br>    <br>    //Inserts a new Link at the first of the list<br>    public void insert(int d1, double d2) {<br>	    Link link = new Link(d1, d2);<br>	    link.nextLink = headptr;<br>	    headptr = link;<br>    }<br>    <br>    public void printList() {<br>	    Link currentLink = headptr;<br>	    System.out.print("List: ");<br>	    while(currentLink != null) {<br>		    currentLink.printLink();<br>		    currentLink = currentLink.nextLink;<br>	    }<br>	    System.out.println("");<br>    }<br><br>}<br><br>class LinkListTest {<br>    public static void main(String[] args) {<br>	    LinkList list = new LinkList();<br><br>	    list.insert(1, 7.01);<br>	    list.insert(4, 4.02);<br>	    list.insert(7, 2.03);<br>	    list.insert(3, 6.04);<br>	    list.insert(2, 1.05);<br>       list.printList();<br><br>}<br>}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-07-06 02:02:15 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64163089</guid>
      </item>
      <item>
         <title>Hidayah</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164071</link>
         <description><![CDATA[<p>class Link {<br>public int data1;<br>public Link nextLink;<br><br>//Link constructor<br>public Link(int d1) {<br>data1 = d1;<br>}<br><br>//Print Link data<br>public void printLink() {<br>System.out.print("data1 : "+data1);<br>}<br>}<br><br>class LinkList {<br>private Link headptr;<br><br>//LinkList constructor<br>public LinkList() {<br>headptr = null;<br>}<br><br>//Inserts a new Link at the first of the list<br>public void insert(int d1) {<br>Link link = new Link(d1);<br>link.nextLink = headptr;<br>headptr = link;<br>}<br><br>public void printList() {<br>Link currentLink = headptr;<br>System.out.print("List: ");<br>while(currentLink != null) {<br>currentLink.printLink();<br>currentLink = currentLink.nextLink;<br>}<br>System.out.println("");<br>}<br><br>}<br><br>class LinkListTest {<br>public static void main(String[] args) {<br>LinkList list = new LinkList();<br><br>list.insert(7);<br>list.insert(3);<br>list.insert(5);<br>list.insert(1);<br>list.printList();<br><br>}<br>}

</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-07-06 02:27:18 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164071</guid>
      </item>
      <item>
         <title>Siti Nursyazana binti Ibrahim</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164114</link>
         <description><![CDATA[<p>class Link {
 public int data1;
 public Link nextLink;
 
 //Link constructor
 public Link(int d1) {
   data1 = d1;
 }

 //Print Link data
 public void printLink() {
   System.out.print("data1 : "+data1);
 }
}

class LinkList {
 private Link headptr;

 //LinkList constructor
 public LinkList() {
   headptr = null;
 }

 //Inserts a new Link at the first of the list
 public void insert(int d1) {
   Link link = new Link(d1);
   link.nextLink = headptr;
   headptr = link;
 }

 public void printList() {
   Link currentLink = headptr;
   System.out.print("List: ");
   while(currentLink != null) {
   currentLink.printLink();
   currentLink = currentLink.nextLink;
   }
   System.out.println("");
 }

}

class LinkListTest {
 public static void main(String[] args) {
   LinkList list = new LinkList();

   list.insert(7);
   list.insert(3);
   list.insert(5);
   list.insert(1);
   list.printList();

 }
}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-07-06 02:28:50 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164114</guid>
      </item>
      <item>
         <title>Fatin Amirah Abd Bari</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164117</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2015-07-06 02:28:57 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164117</guid>
      </item>
      <item>
         <title>zaiton</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164339</link>
         <description><![CDATA[]]></description>
         <enclosure url="" />
         <pubDate>2015-07-06 02:37:25 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164339</guid>
      </item>
      <item>
         <title>#QuratulCuba</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164594</link>
         <description><![CDATA[<p>class Link {<br>public int data1;<br>public Link nextLink;<br><br>//Link constructor<br>public Link(int d1) {<br>data1 = d1;<br>}<br><br>//Print Link data<br>public void printLink() {<br>System.out.print("{"+data1+"}");<br>}<br>}<br><br>class LinkList {<br>private Link headptr;<br><br>//LinkList constructor<br>public LinkList() {<br>headptr = null;<br>}<br><br>//Inserts a new Link at the first of the list<br>public void insert(int d1) {<br>Link link = new Link(d1);<br>link.nextLink = headptr;<br>headptr = link;<br>}<br><br>public void printList() {<br>Link currentLink = headptr;<br>System.out.print("List: ");<br>while(currentLink != null) {<br>currentLink.printLink();<br>currentLink = currentLink.nextLink;<br>}<br>System.out.println("");<br>}<br><br>}<br><br>class LinkListTest {<br>public static void main(String[] args) {<br>LinkList list = new LinkList();<br><br>list.insert(7);<br>list.insert(3);<br>list.insert(5);<br>list.insert(1);<br>list.printList();<br><br>}<br>}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-07-06 02:42:50 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164594</guid>
      </item>
      <item>
         <title>Noralia Akilah Binti Salman</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164703</link>
         <description><![CDATA[<p>public class Link {<br>	<br>	public int data1;<br>	public Link nextLink;<br><br>	public Link(int d1){<br>	data1=d1;<br>	}<br>	public void printLink(){<br>		System.out.print("{"+data1+"}");<br>	}<br>	}<br><br><br>public class LinkList {<br>	private Link headptr;<br>	<br>	public LinkList(){<br>		headptr=null;<br>	}<br>	<br>	public void insert(int d1) {<br>		Link link = new Link(d1);<br>		link.nextLink = headptr;<br>		headptr = link;<br>		}<br><br>		public void printList() {<br>		Link currentLink = headptr;<br>		System.out.print("List: ");<br>		while(currentLink != null) {<br>		currentLink.printLink();<br>		currentLink = currentLink.nextLink;<br>		}<br>		System.out.println("");<br>		}<br><br>		}</p><p>public class LinkListTest {<br><br>		public static void main(String[] args) {<br>		LinkList list = new LinkList();<br><br>		list.insert(7);<br>		list.insert(3);<br>		list.insert(5);<br>		list.insert(1);<br>		list.printList();<br><br>		}<br>		}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-07-06 02:45:26 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164703</guid>
      </item>
      <item>
         <title>JIA</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164884</link>
         <description><![CDATA[<p>class Link {

   public int data1;
   public Link nextLink;

//Link constructor
      public Link(int d1) {
      data1 = d1;
   }

//Print Link data
      public void printLink() {
      System.out.print("{" + data1 + "} ");
      }
   }

class LinkList {
   private Link headptr;

//LinkList constructor
      public LinkList() {
      headptr = null;
      }

//Inserts a new Link at the first of the list
      public void insert(int d1) {
         Link link = new Link(d1);
            link.nextLink = headptr;
            headptr = link;
         }

      public void printList() {
         Link currentLink = headptr;
         System.out.print("List: ");
            while(currentLink != null) {
               currentLink.printLink();
               currentLink = currentLink.nextLink;
               }
         System.out.println("");
      }

}

   class LinkListTest {
      public static void main(String[] args) {
         LinkList list = new LinkList();

         list.insert(1);
         list.insert(2);
         list.insert(3);
         list.insert(4);
         list.insert(7);
         list.printList();

   }
}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-07-06 02:49:23 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164884</guid>
      </item>
      <item>
         <title>Mishalini Chandran</title>
         <author></author>
         <link>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164952</link>
         <description><![CDATA[<p>class Link {<br>public int data1;<br>public Link nextLink;<br><br>//Link constructor<br>public Link(int d1) {<br>data1 = d1;<br>}<br><br>//Print Link data<br>public void printLink() {<br>System.out.print("{" + data1 + "} ");<br>}<br>}<br><br>class LinkList {<br>private Link headptr;<br><br>//LinkList constructor<br>public LinkList() {<br>headptr = null;<br>}<br><br>//Inserts a new Link at the first of the list<br>public void insert(int d1) {<br>Link link = new Link(d1);<br>link.nextLink = headptr;<br>headptr = link;<br>}<br><br>public void printList() {<br>Link currentLink = headptr;<br>System.out.print("List: ");<br>while(currentLink != null) {<br>currentLink.printLink();<br>currentLink = currentLink.nextLink;<br>}<br>System.out.println("");<br>}<br><br>}<br><br>class LinkListTest {<br>public static void main(String[] args) {<br>LinkList list = new LinkList();<br><br>list.insert(7);<br>list.insert(3);<br>list.insert(5);<br>list.insert(1);<br>list.printList();<br><br>}<br>}</p>]]></description>
         <enclosure url="" />
         <pubDate>2015-07-06 02:50:56 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64164952</guid>
      </item>
      <item>
         <title>Ubahsuai - aturcara</title>
         <author>ramlahmailok</author>
         <link>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64165090</link>
         <description><![CDATA[<div>class Link {<br>&nbsp; &nbsp; public int data1;<br>&nbsp;<br>&nbsp; &nbsp; public Link next;<br><br>&nbsp; &nbsp; //Link constructor<br>&nbsp; &nbsp; public Link(int d1) {<br>	&nbsp; &nbsp; data1 = d1;<br>	&nbsp; &nbsp;<br>&nbsp; &nbsp; }<br><br>&nbsp; &nbsp; //Print Link data<br>&nbsp; &nbsp; public void printLink() {<br>	&nbsp; &nbsp; System.out.print("{" + data1 +&nbsp; "} ");<br>&nbsp; &nbsp; }<br>}<br>class LinkList {<br>&nbsp; &nbsp; private Link headptr;<br><br>&nbsp; &nbsp; //LinkList constructor<br>&nbsp; &nbsp; public LinkList() {<br>	&nbsp; &nbsp; headptr = null;<br>&nbsp; &nbsp; }<br><br>&nbsp; &nbsp;&nbsp;<br><br>&nbsp; &nbsp; //Inserts a new Link at the first of the list<br>&nbsp; &nbsp; public void insert(int d1) {<br>	&nbsp; &nbsp; Link newptr = new Link(d1);<br>	&nbsp; &nbsp; newptr.next = headptr;<br>	&nbsp; &nbsp; headptr = newptr;<br>&nbsp; &nbsp; }<br>&nbsp; &nbsp;&nbsp;<br>&nbsp; &nbsp; public void printList() {<br>	&nbsp; &nbsp; Link currentLink = headptr;<br>	&nbsp; &nbsp; System.out.print("List: ");<br>	&nbsp; &nbsp; while(currentLink != null) {<br>		&nbsp; &nbsp; currentLink.printLink();<br>		&nbsp; &nbsp; currentLink = currentLink.next;<br>	&nbsp; &nbsp; }<br>	&nbsp; &nbsp; System.out.println("");<br>&nbsp; &nbsp; }<br><br>}<br><br>class LinkListTest {<br>&nbsp; &nbsp; public static void main(String[] args) {<br>	&nbsp; &nbsp; LinkList list = new LinkList();<br><br>	&nbsp; &nbsp; list.insert(7);<br>	&nbsp; &nbsp; list.insert(3);<br>	&nbsp; &nbsp; list.insert(5);<br>	&nbsp; &nbsp; list.insert(1);<br>	&nbsp; &nbsp; list.printList();<br><br>}}<br><br></div>]]></description>
         <enclosure url="" />
         <pubDate>2015-07-06 02:54:27 UTC</pubDate>
         <guid>https://padlet.com/ramlahmailok/h3rjak28rw0t/wish/64165090</guid>
      </item>
   </channel>
</rss>
