225 lines
4.9 KiB
Java
225 lines
4.9 KiB
Java
package DataStructures.Lists;
|
|
|
|
/**
|
|
* This class implements a SinglyLinked List. This is done
|
|
* using SinglyLinkedList class and a LinkForLinkedList Class.
|
|
* <p>
|
|
* A linked list is similar to an array, it hold values.
|
|
* However, links in a linked list do not have indexes. With
|
|
* a linked list you do not need to predetermine it's size as
|
|
* it grows and shrinks as it is edited. This is an example of
|
|
* a singly linked list. Elements can only be added/removed
|
|
* at the head/front of the list.
|
|
*/
|
|
public class SinglyLinkedList {
|
|
/**
|
|
* Head refer to the front of the list
|
|
*/
|
|
private Node head;
|
|
|
|
/**
|
|
* size of SinglyLinkedList
|
|
*/
|
|
private int size;
|
|
|
|
/**
|
|
* init SinglyLinkedList
|
|
*/
|
|
public SinglyLinkedList() {
|
|
head = new Node(0);
|
|
size = 0;
|
|
}
|
|
|
|
/**
|
|
* This method inserts an element at the head
|
|
*
|
|
* @param x Element to be added
|
|
*/
|
|
public void insertHead(int x) {
|
|
insertNth(x, 0);
|
|
}
|
|
|
|
/**
|
|
* insert an element at the tail of list
|
|
*
|
|
* @param data Element to be added
|
|
*/
|
|
public void insert(int data) {
|
|
insertNth(data, size);
|
|
}
|
|
|
|
/**
|
|
* Inserts a new node at a specified position
|
|
*
|
|
* @param data data to be stored in a new node
|
|
* @param position position at which a new node is to be inserted
|
|
*/
|
|
public void insertNth(int data, int position) {
|
|
checkBounds(position, 0, size);
|
|
Node cur = head;
|
|
for (int i = 0; i < position; ++i) {
|
|
cur = cur.next;
|
|
}
|
|
Node node = new Node(data);
|
|
node.next = cur.next;
|
|
cur.next = node;
|
|
size++;
|
|
}
|
|
|
|
/**
|
|
* This method deletes an element at the head
|
|
*
|
|
* @return The element deleted
|
|
*/
|
|
public void deleteHead() {
|
|
deleteNth(0);
|
|
}
|
|
|
|
/**
|
|
* This method deletes an element at the tail
|
|
*/
|
|
public void delete() {
|
|
deleteNth(size - 1);
|
|
}
|
|
|
|
/**
|
|
* This method deletes an element at Nth position
|
|
*/
|
|
public void deleteNth(int position) {
|
|
checkBounds(position, 0, size - 1);
|
|
Node cur = head;
|
|
for (int i = 0; i < position; ++i) {
|
|
cur = cur.next;
|
|
}
|
|
|
|
Node destroy = cur.next;
|
|
cur.next = cur.next.next;
|
|
destroy = null; // clear to let GC do its work
|
|
|
|
size--;
|
|
}
|
|
|
|
/**
|
|
* @param position to check position
|
|
* @param low low index
|
|
* @param high high index
|
|
* @throws IndexOutOfBoundsException if {@code position} not in range {@code low} to {@code high}
|
|
*/
|
|
public void checkBounds(int position, int low, int high) {
|
|
if (position > high || position < low) {
|
|
throw new IndexOutOfBoundsException(position + "");
|
|
}
|
|
}
|
|
|
|
/**
|
|
* clear all nodes in list
|
|
*/
|
|
public void clear() {
|
|
if (size == 0) {
|
|
return;
|
|
}
|
|
Node prev = head.next;
|
|
Node cur = prev.next;
|
|
while (cur != null) {
|
|
prev = null; // clear to let GC do its work
|
|
prev = cur;
|
|
cur = cur.next;
|
|
}
|
|
prev = null;
|
|
head.next = null;
|
|
size = 0;
|
|
}
|
|
|
|
/**
|
|
* Checks if the list is empty
|
|
*
|
|
* @return true is list is empty
|
|
*/
|
|
public boolean isEmpty() {
|
|
return size == 0;
|
|
}
|
|
|
|
/**
|
|
* Returns the size of the linked list
|
|
*/
|
|
public int getSize() {
|
|
return size;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
if (size == 0) {
|
|
return "";
|
|
}
|
|
StringBuilder builder = new StringBuilder();
|
|
Node cur = head.next;
|
|
while (cur != null) {
|
|
builder.append(cur.value).append("->");
|
|
cur = cur.next;
|
|
}
|
|
return builder.replace(builder.length() - 2, builder.length(), "").toString();
|
|
}
|
|
|
|
/**
|
|
* Main method
|
|
*
|
|
* @param args Command line arguments
|
|
*/
|
|
public static void main(String args[]) {
|
|
SinglyLinkedList myList = new SinglyLinkedList();
|
|
|
|
assert myList.isEmpty();
|
|
|
|
myList.insertHead(5);
|
|
myList.insertHead(7);
|
|
myList.insertHead(10);
|
|
|
|
System.out.println(myList);; // 10 -> 7 -> 5
|
|
|
|
myList.deleteHead();
|
|
|
|
System.out.println(myList);; // 7 -> 5
|
|
|
|
myList.insertNth(11, 2);
|
|
|
|
System.out.println(myList);; // 7 -> 5 -> 11
|
|
|
|
myList.deleteNth(1);
|
|
|
|
System.out.println(myList);; // 7-> 11
|
|
|
|
myList.clear();
|
|
assert myList.isEmpty();
|
|
|
|
System.out.println(myList); // ""
|
|
|
|
}
|
|
}
|
|
|
|
/**
|
|
* This class is the nodes of the SinglyLinked List.
|
|
* They consist of a value and a pointer to the node
|
|
* after them.
|
|
*/
|
|
class Node {
|
|
/**
|
|
* The value of the node
|
|
*/
|
|
int value;
|
|
|
|
/**
|
|
* Point to the next node
|
|
*/
|
|
Node next;
|
|
|
|
/**
|
|
* Constructor
|
|
*
|
|
* @param value Value to be put in the node
|
|
*/
|
|
Node(int value) {
|
|
this.value = value;
|
|
this.next = null;
|
|
}
|
|
}
|