|
| 1 | +import java.util.Objects; |
| 2 | + |
| 3 | +class Node { |
| 4 | + int val; |
| 5 | + Node next; |
| 6 | + |
| 7 | + Node(int val) { |
| 8 | + this.val = val; |
| 9 | + this.next = null; |
| 10 | + } |
| 11 | + |
| 12 | + Node(int val, Node next) { |
| 13 | + this.val = val; |
| 14 | + this.next = next; |
| 15 | + } |
| 16 | +} |
| 17 | + |
| 18 | +public class SinglyLinkedList { |
| 19 | + Node head; |
| 20 | + |
| 21 | + public void printList() { |
| 22 | + Node aux = head; |
| 23 | + System.out.print("["); |
| 24 | + while (aux != null) { |
| 25 | + System.out.print(aux.val); |
| 26 | + if (aux.next != null) { |
| 27 | + System.out.print(", "); |
| 28 | + } |
| 29 | + aux = aux.next; |
| 30 | + } |
| 31 | + System.out.println("]"); |
| 32 | + } |
| 33 | + |
| 34 | + public void pushBack(int val) { |
| 35 | + Node newNode = new Node(val); |
| 36 | + if (head == null) { |
| 37 | + head = newNode; |
| 38 | + } else { |
| 39 | + Node aux = head; |
| 40 | + while (aux.next != null) { |
| 41 | + aux = aux.next; |
| 42 | + } |
| 43 | + aux.next = newNode; |
| 44 | + } |
| 45 | + } |
| 46 | + |
| 47 | + public void pushFront(int val) { |
| 48 | + Node newNode = new Node(val, head); |
| 49 | + head = newNode; |
| 50 | + } |
| 51 | + |
| 52 | + public void insertInPosition(int val, int pos) { |
| 53 | + if (pos == 0) { |
| 54 | + pushFront(val); |
| 55 | + return; |
| 56 | + } |
| 57 | + Node newNode = new Node(val); |
| 58 | + Node prev = head; |
| 59 | + Node curr = head; |
| 60 | + |
| 61 | + while (curr != null && pos > 0) { |
| 62 | + prev = curr; |
| 63 | + curr = curr.next; |
| 64 | + pos--; |
| 65 | + } |
| 66 | + |
| 67 | + prev.next = newNode; |
| 68 | + newNode.next = curr; |
| 69 | + } |
| 70 | + |
| 71 | + public void popBack() { |
| 72 | + if (head == null) { |
| 73 | + return; |
| 74 | + } |
| 75 | + |
| 76 | + if (head.next == null) { |
| 77 | + head = null; |
| 78 | + return; |
| 79 | + } |
| 80 | + |
| 81 | + Node prev = head; |
| 82 | + Node curr = head.next; |
| 83 | + |
| 84 | + while (curr.next != null) { |
| 85 | + prev = prev.next; |
| 86 | + curr = curr.next; |
| 87 | + } |
| 88 | + |
| 89 | + prev.next = null; |
| 90 | + } |
| 91 | + |
| 92 | + public void popFront() { |
| 93 | + if (head == null) { |
| 94 | + return; |
| 95 | + } |
| 96 | + |
| 97 | + Node aux = head; |
| 98 | + head = aux.next; |
| 99 | + } |
| 100 | + |
| 101 | + public void removeFromPosition(int pos) { |
| 102 | + if (head == null) { |
| 103 | + return; |
| 104 | + } |
| 105 | + |
| 106 | + if (pos == 0) { |
| 107 | + popFront(); |
| 108 | + return; |
| 109 | + } |
| 110 | + |
| 111 | + Node prev = head; |
| 112 | + Node curr = head; |
| 113 | + |
| 114 | + while (curr != null && pos > 0) { |
| 115 | + prev = curr; |
| 116 | + curr = curr.next; |
| 117 | + pos--; |
| 118 | + } |
| 119 | + |
| 120 | + if (curr != null) { |
| 121 | + prev.next = curr.next; |
| 122 | + } |
| 123 | + } |
| 124 | + |
| 125 | + public static void main(String[] args) { |
| 126 | + SinglyLinkedList list = new SinglyLinkedList(); |
| 127 | + |
| 128 | + System.out.println("Inserting the elements at the end [1, 2, 3]:"); |
| 129 | + list.pushBack(1); |
| 130 | + list.pushBack(2); |
| 131 | + list.pushBack(3); |
| 132 | + list.printList(); |
| 133 | + |
| 134 | + System.out.println("Inserting the elements at the beginning [0, -1, -2]:"); |
| 135 | + list.pushFront(0); |
| 136 | + list.pushFront(-1); |
| 137 | + list.pushFront(-2); |
| 138 | + list.printList(); |
| 139 | + |
| 140 | + System.out.println("Inserting in positions 3, 4, 5 the elements [997, 998, 999] respectively:"); |
| 141 | + list.insertInPosition(997, 3); |
| 142 | + list.insertInPosition(998, 4); |
| 143 | + list.insertInPosition(999, 5); |
| 144 | + list.printList(); |
| 145 | + |
| 146 | + System.out.println("Removing last element:"); |
| 147 | + list.popBack(); |
| 148 | + list.printList(); |
| 149 | + |
| 150 | + System.out.println("Removing first element:"); |
| 151 | + list.popFront(); |
| 152 | + list.printList(); |
| 153 | + |
| 154 | + System.out.println("Removing element in position 2:"); |
| 155 | + list.removeFromPosition(2); |
| 156 | + list.printList(); |
| 157 | + } |
| 158 | +} |
| 159 | + |
0 commit comments