Create a method called priorityPush that connects with the LinkedStack class. Method should add a new element to the stack or if an elements exist in the stack, move it up to the top which priortize it.  Method header: public boolean priorityPush(T element)

Computer Networking: A Top-Down Approach (7th Edition)
7th Edition
ISBN:9780133594140
Author:James Kurose, Keith Ross
Publisher:James Kurose, Keith Ross
Chapter1: Computer Networks And The Internet
Section: Chapter Questions
Problem R1RQ: What is the difference between a host and an end system? List several different types of end...
icon
Related questions
Question

Create a method called priorityPush that connects with the LinkedStack class. Method should add a new element to the stack or if an elements exist in the stack, move it up to the top which priortize it. 

Method header: public boolean priorityPush(T element)

1
2
public final class LinkedStack<T> implements StackInterface<T> {
3
4
private Node topNode; // References the first node in the chain
public LinkedStack() {
topNode = null;
}
6.
7
8.
public void push(T newEntry) {
Node newNode = new Node(newEntry, topNode);
topNode = newNode;
//
}
10
11
12
13
topNode
= new Node(newEntry, topNode); // Alternate code
14
15
public T peek() {
if (isEmpty())
| throw new EmptyStackException();
else
16
17
18
19
20
return topNode.getData();
21
} // end peek
22
public T pop() {
I top
topNode
23
peek(); // Might throw EmptyStackException
topNode.getNextNode();
24
25
26
return top;
}
27
28
29
public boolean isEmpty() {
return topNode
}
30
31
null;
32
33
public void clear() {
topNode = null;
}
34
35
36
37
38
39
@Override
public String toString() {
String s
40
"";
topNode;
41
42
Node current
while (current != null) {
S = current.data + " ||
current = current.next;
}
return s;
}
43
44
s;
45
46
47
48
49
public boolean priorityPush(T element) {
// YOUR CODE HERE
return false; // placeholder: replace with your own code
}
50
51
52
53
54
Transcribed Image Text:1 2 public final class LinkedStack<T> implements StackInterface<T> { 3 4 private Node topNode; // References the first node in the chain public LinkedStack() { topNode = null; } 6. 7 8. public void push(T newEntry) { Node newNode = new Node(newEntry, topNode); topNode = newNode; // } 10 11 12 13 topNode = new Node(newEntry, topNode); // Alternate code 14 15 public T peek() { if (isEmpty()) | throw new EmptyStackException(); else 16 17 18 19 20 return topNode.getData(); 21 } // end peek 22 public T pop() { I top topNode 23 peek(); // Might throw EmptyStackException topNode.getNextNode(); 24 25 26 return top; } 27 28 29 public boolean isEmpty() { return topNode } 30 31 null; 32 33 public void clear() { topNode = null; } 34 35 36 37 38 39 @Override public String toString() { String s 40 ""; topNode; 41 42 Node current while (current != null) { S = current.data + " || current = current.next; } return s; } 43 44 s; 45 46 47 48 49 public boolean priorityPush(T element) { // YOUR CODE HERE return false; // placeholder: replace with your own code } 50 51 52 53 54
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 2 steps

Blurred answer
Recommended textbooks for you
Computer Networking: A Top-Down Approach (7th Edi…
Computer Networking: A Top-Down Approach (7th Edi…
Computer Engineering
ISBN:
9780133594140
Author:
James Kurose, Keith Ross
Publisher:
PEARSON
Computer Organization and Design MIPS Edition, Fi…
Computer Organization and Design MIPS Edition, Fi…
Computer Engineering
ISBN:
9780124077263
Author:
David A. Patterson, John L. Hennessy
Publisher:
Elsevier Science
Network+ Guide to Networks (MindTap Course List)
Network+ Guide to Networks (MindTap Course List)
Computer Engineering
ISBN:
9781337569330
Author:
Jill West, Tamara Dean, Jean Andrews
Publisher:
Cengage Learning
Concepts of Database Management
Concepts of Database Management
Computer Engineering
ISBN:
9781337093422
Author:
Joy L. Starks, Philip J. Pratt, Mary Z. Last
Publisher:
Cengage Learning
Prelude to Programming
Prelude to Programming
Computer Engineering
ISBN:
9780133750423
Author:
VENIT, Stewart
Publisher:
Pearson Education
Sc Business Data Communications and Networking, T…
Sc Business Data Communications and Networking, T…
Computer Engineering
ISBN:
9781119368830
Author:
FITZGERALD
Publisher:
WILEY