You are provided with a linked list and need to implement the push and pop functionalities of a stack using this linked list. Your task is to complete the push() and pop() methods in the given class template. The push() method accepts an integer x as input and adds it to the stack, while the pop() method removes and returns the integer at the top of the stack. If the stack is empty, the pop() method should return -1.
Note: The input consists of a series of queries representing operations on the stack. There are two types of queries, as described below:
Query type 1: This query includes an additional parameter x and performs the operation to push x into the stack.
Query type 2: This query performs the operation to pop an element from the stack and return the popped value.
Examples
Example 1
Example 1
Input: [[1,2], [1,3], [2], [1,4], [2]]
Output: [3, 4]
Explanation:
Hints
Hint 1
Expected Time Complexity: O(1)
Hint 2
Expected Space Complexity: O(1)
Constraints
1 <= numbers of calls made to push, pop <= 100
1 <= x <= 100
Companies
MicrosoftSamsungCiscoCognizant
Topics
Stack
Track your submissions
Please log in to review your progress and explore code submissions from other participants.
Unlock the full solution
Please log in to access detailed answers and explanations.
Join the discussion
Please log in to join conversations with other participants.
Solution.csC#JavaPythonC++Javascript
1
2
3
4
5
6
7
8
9
10
Unlock the code editor
Sign in to write, run, and submit your solution against the full test suite.