Halo kawan-kawan, setelah sekian lama blog ini vakum karena banyak hal jadi kali ini blog serbaguna akan membagikan link free download winrar archiver versi 6.24 ya. Banyak dari kawan-kawan yang pasti membutuhkan aplikasi winrar ini, yuk gak usah panjang x lebar silahkan sedot! DOWNLOAD DISINI Terimakasih kawan-kawan, sampai bertemu di tulisan berikutnya.
1. Class Main
==> Untuk menginstant Object dari Class yang ada
package singlelinkedlist;
/**
*
* @author Hermawankusuma */
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
SLL SList = new SLL();
SList.insertFirst(20);
SList.insertFirst(19);
SList.insertFirst(25);
SList.tampilkan();
SList.insertFirst(1);
System.out.println("\n");
SList.tampilkan();
SList.insertLast(10000);
System.out.println("\n");
SList.tampilkan();
}
}
2. Class Node
==> Untuk membuat data type baru bernama Node untuk membuat Node - Node pada Class SingleLinkedList.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package singlelinkedlist;
/**
*
* @author Hermawankusuma */
public class Node {
public int data;
public Node Next;
public Node()
{
Next = null;
}
}
3. Class Single Linked List
==> Untuk membuat Linked List dalam bentuk Single
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package singlelinkedlist;
/**
*
* @author Hermawankusuma */
public class SingleLinkedList {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
SLL SList = new SLL();
SList.insertFirst(20);
SList.insertFirst(19);
SList.insertFirst(25);
SList.tampilkan();
SList.insertFirst(1);
System.out.println("\n");
SList.tampilkan();
SList.insertLast(10000);
System.out.println("\n");
SList.tampilkan();
}
}
==> Untuk menginstant Object dari Class yang ada
package singlelinkedlist;
/**
*
* @author Hermawankusuma */
public class Main {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
SLL SList = new SLL();
SList.insertFirst(20);
SList.insertFirst(19);
SList.insertFirst(25);
SList.tampilkan();
SList.insertFirst(1);
System.out.println("\n");
SList.tampilkan();
SList.insertLast(10000);
System.out.println("\n");
SList.tampilkan();
}
}
2. Class Node
==> Untuk membuat data type baru bernama Node untuk membuat Node - Node pada Class SingleLinkedList.
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package singlelinkedlist;
/**
*
* @author Hermawankusuma */
public class Node {
public int data;
public Node Next;
public Node()
{
Next = null;
}
}
3. Class Single Linked List
==> Untuk membuat Linked List dalam bentuk Single
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package singlelinkedlist;
/**
*
* @author Hermawankusuma */
public class SingleLinkedList {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
SLL SList = new SLL();
SList.insertFirst(20);
SList.insertFirst(19);
SList.insertFirst(25);
SList.tampilkan();
SList.insertFirst(1);
System.out.println("\n");
SList.tampilkan();
SList.insertLast(10000);
System.out.println("\n");
SList.tampilkan();
}
}
Comments
Post a Comment