Implement stack using Linkedlist

Stack / Queues Implementation Easy

Implement a Last-In-First-Out (LIFO) stack using a singly linked list. The implemented stack should support the following operations: push, pop, top, and isEmpty.


Implement the LinkedListStack class:


void push(int x): Pushes element x onto the stack.

int pop(): Removes and returns the top element of the stack.

int top(): Returns the top element of the stack without removing it.

boolean isEmpty(): Returns true if the stack is empty, false otherwise.

Examples:

Input:

["LinkedListStack", "push", "push", "pop", "top", "isEmpty"]

[[], [3], [7], [], [], []]


Output: [null, null, null, 7, 3, false]

Explanation:

LinkedListStack stack = new LinkedListStack();

stack.push(3);

stack.push(7);

stack.pop(); // returns 7

stack.top(); // returns 3

stack.isEmpty(); // returns false

Input:

["LinkedListStack", "isEmpty"]

[[]]


Output: [null, true]

Explanation:

LinkedListStack stack = new LinkedListStack();

stack.isEmpty(); // returns true

Input:

["LinkedListStack", "push", "pop", "isEmpty"]

[[], [2], [], []]

Constraints

  • 1 <= numbers of calls made <= 100
  • 1 <= x <= 100

Hints

  • "A brute-force approach would use: An array-based stack (O(1) time, O(n) space), but resizing operations make it inefficient."
  • "Use a singly linked list where: Each node stores a value and a pointer to the next node. The top of the stack is represented by the head of the list."

Company Tags

Cerner Johnson & Johnson American Express Rockstar Games Swiggy Airbnb Ernst & Young Pinterest Splunk Bungie Intel Micron Technology KPMG Roblox Bloomberg Seagate Technology Byju's Flipkart PwC Wayfair PayPal Riot Games Texas Instruments Siemens Healthineers Nutanix Google Microsoft Amazon Meta Apple Netflix Adobe TCS Cognizant Accenture Infosys Capgemini Wipro