Merge pull request #711 from ojasiiitd/patch-1

Updated StackOfLinkedList.java
This commit is contained in:
yanglbme
2019-03-05 10:18:51 +08:00
committed by GitHub

View File

@ -1,7 +1,5 @@
/** /**
*
* @author Varun Upadhyay (https://github.com/varunu28) * @author Varun Upadhyay (https://github.com/varunu28)
*
*/ */
// An implementation of a Stack using a Linked List // An implementation of a Stack using a Linked List
@ -25,9 +23,7 @@ class StackOfLinkedList {
stack.pop(); stack.pop();
System.out.println("Top element of stack currently is: " + stack.peek()); System.out.println("Top element of stack currently is: " + stack.peek());
} }
} }
// A node class // A node class
@ -44,66 +40,71 @@ class Node {
/** /**
* A class which implements a stack using a linked list * A class which implements a stack using a linked list
* * <p>
* Contains all the stack methods : push, pop, printStack, isEmpty * Contains all the stack methods : push, pop, printStack, isEmpty
**/ **/
class LinkedListStack { class LinkedListStack {
Node head = null; Node head = null;
int size = 0;
public void push(int x) { public void push(int x) {
Node n = new Node(x); Node n = new Node(x);
if (getSize() == 0) { if (head == null) {
head = n; head = n;
} } else {
else {
Node temp = head; Node temp = head;
n.next = temp; n.next = temp;
head = n; head = n;
} }
size++;
} }
public void pop() { public void pop() {
if (getSize() == 0) { if (head == null) {
System.out.println("Empty stack. Nothing to pop"); System.out.println("Empty stack. Nothing to pop");
} }
Node temp = head; Node temp = head;
head = head.next; head = head.next;
size--;
System.out.println("Popped element is: " + temp.data); System.out.println("Popped element is: " + temp.data);
} }
public int peek() { public int peek() {
if (getSize() == 0) { if (head == null) {
return -1; return -1;
} }
return head.data;
return head.data;
} }
public void printStack() { public void printStack() {
Node temp = head; Node temp = head;
System.out.println("Stack is printed as below: "); System.out.println("Stack is printed as below: ");
while (temp != null) { while (temp != null) {
System.out.println(temp.data + " "); if (temp.next == null) {
System.out.print(temp.data);
} else {
System.out.print(temp.data + " -> ");
}
temp = temp.next; temp = temp.next;
} }
System.out.println(); System.out.println();
} }
public boolean isEmpty() { public boolean isEmpty() {
return getSize() == 0; return head == null;
} }
public int getSize() { public int getSize() {
return size; if (head == null)
return 0;
else {
int size = 1;
Node temp = head;
while (temp.next != null) {
temp = temp.next;
size++;
}
return size;
}
} }
} }