A Doubly Linked List (DLL) contains an extra pointer, typically called previous pointer, together with next pointer and data which are there in singly linked list.
Linked List is a part of the Collection framework present in java.util package. This class is an implementation of the LinkedList data structure which is a linear data structure where the elements are not stored in contiguous locations and every element is a separate object with a data part and address part. The elements are linked using pointers and addresses. Each element is known as a node. Due to the dynamicity and ease of insertions and deletions, they are preferred over the arrays. It also has a few disadvantages like the nodes cannot be accessed directly instead we need to start from the head and follow through the link to reach a node we wish to access.
Folder didalam tugas-2a berisikan file gabungan antara tugas-2a dan tugas-2b dan folder tugas-2b menjadi draft contoh pustaka tugas-2b
Nama | NIM | Link Github |
---|---|---|
Muhammad Rizki Ramadhan | 09021382126122 | github.com/zenkriztao |
Abdullah Farauk | 09021382126124 | github.com/stardenbart |
Muhamad Dwirizqy Wimbassa | 09021382126126 | github.com/TheNameIsK |
Kaka Inochi | 09021382126128 | github.com/s3nyu |
Arrahmanul Hakim | 09021382126130 | github.com/hualakowski |
Cinta Indriyani Putri Nabila | 09021382126132 | github.com/cintaindriyanipn |
git clone https://github.com/zenkriztao/Tugas2-ASDL-Kelompok-2
cd Tugas2-ASDL-Kelompok-2
git init
git add [file]
git commit -m ["pesan"]
git remote add origin [branch]
git push -u origin [branch]
Lisensi MIT