public class Main {
public static void main(String[] args) {
LinkedList ll = new LinkedList();
ll.add(1).add(2).add(3).add(4).add(5);
System.out.println(ll);
System.out.println(ll.middle_elem());
}
}
LinkedList{1 ,2 ,3 ,4 ,5}
3
Test Exercise: Cycle in LinkedList
Detect if there is cycle in LinkedList
Hint! you should use the code we use before
I have added a print function to show the loop
class LinkedList {
Node head;
// ..... code from before
public void print(){
Node node = head;
while (node!=null){
System.out.print(node + " ");
node = node.next;
}
}
}
public class Main {
public static void main(String[] args) {
LinkedList ll = new LinkedList();
ll.add(1).add(2).add(3).add(4);
System.out.println(ll);
//add cycle
Node temp = ll.head.next;
ll.head.next.next.next.next = temp; // 4 -> 2, 4 connected to 2
// System.out.println(ll); //runs out of heap
ll.print();
}
}
LinkedList reverse() {
Node prev = null;
Node current = head;
Node next = head;
while (current != null) {
next = current.next;
current.next = prev;
prev = current;
current = next;
}
head = prev;
return this;
}
public class Main {
public static void main(String[] args) {
LinkedList ll = new LinkedList();
ll.add(1).add(2).add(3).add(4);
System.out.println(ll);
System.out.println(ll.reverse());
}
}
LinkedList{1 ,2 ,3 ,4}
LinkedList{4 ,3 ,2 ,1}
Exercise: Reverse LinkedList - Recursively
solution
LinkedList reverseRec(){
head = reverse_rec(head);
return this;
}
Node reverse_rec(Node head) {
//Base Case 1:
if(head == null)
return head;
//Base Case 2: last node or only one node
if(head.next == null)
return head;
Node newHeadNode = reverse_rec(head.next);
// change references for middle chain
head.next.next = head;
head.next = null;
// send back new head node in every recursion
return newHeadNode;
}
public class Main {
public static void main(String[] args) {
LinkedList ll = new LinkedList();
ll.add(1).add(2).add(3).add(4);
System.out.println(ll);
System.out.println(ll.reverseRec());
}
}
LinkedList{1 ,2 ,3 ,4}
LinkedList{4 ,3 ,2 ,1}
Exercise: Partition LinkedList
all even numbers appear before all the odd numbers in the modified linked list
Solution
Pointer should be at last node (iterate to get there)
Move all the odd nodes to the end
Consider all odd nodes before the first even node and move them to end.
Change the head pointer to point to the first even node.
Consider all odd nodes after the first even node and move them to the end.
LinkedList partition_evens_odds() {
Node end = head;
Node prev = null;
Node curr = head;
// Get pointer to last Node
while (end.next != null)
end = end.next;
Node new_end = end;
// Consider all odd nodes before getting first even node
while (curr.data %2 !=0 && curr != end) {
new_end.next = curr;
curr = curr.next;
new_end.next.next = null;
new_end = new_end.next;
}
// do following steps only if there is an even node
if (curr.data %2 ==0) {
head = curr;
// now curr points to first even node
while (curr != end) {
if (curr.data % 2 == 0) {
prev = curr;
curr = curr.next;
}
else {
prev.next = curr.next; // Break the link between prev and curr
curr.next = null; // Make next of curr as null
new_end.next = curr; //Move curr to end
new_end = curr; //Make curr as new end of list
curr = prev.next; //Update curr pointer
}
}
} else { // We have to set prev before executing rest of this code
prev = curr;
}
if (new_end != end && end.data %2 != 0) {
prev.next = end.next;
end.next = null;
new_end.next = end;
}
return this;
}
public class Main {
public static void main(String[] args) {
LinkedList ll = new LinkedList();
ll.add(1).add(2).add(3).add(4).add(5).add(6).add(7);
System.out.println(ll);
System.out.println(ll.partition_evens_odds());
}
}
can traverse in both forward and backward direction
and more, so read up
Disadvantages over singly linked list
takes up more space
All operations require an extra pointer previous to be maintained. For example, in insertion, we need to modify previous pointers together with next pointers.