Question

Q10. Write a method for String toString() method for Stack implemented as a linked list. The toString() method is used to get a String object representing the contents of a class

0 0
Add a comment Improve this question Transcribed image text
Answer #1

public String toString()

{

    // head points to the top element of the stack

    Node trav = head;

   

    String ans = "";

   

    // traverse through the list

    while( trav != null )

    {

        // getVal() returns the value of the node

        ans = ans + trav.getVal() + " ";

       

        // go to next node in the list

        // getNext() returns the value of the next field

        trav = trav.getNext();

    }

   

    return ans;

}

Code Screenshot

public STring toString ) // head points to the top element of the stack Node trav-head; String ans = ; // traverse through

Add a comment
Know the answer?
Add Answer to:
Q10. Write a method for "String toString()" method for Stack implemented as a linked list. The...
Your Answer:

Post as a guest

Your Name:

What's your source?

Earn Coins

Coins can be redeemed for fabulous gifts.

Not the answer you're looking for? Ask your own homework help question. Our experts will answer your question WITHIN MINUTES for Free.
Similar Homework Help Questions
  • Java - Write an insertBefore method for a List implemented as a Linked List that contains...

    Java - Write an insertBefore method for a List implemented as a Linked List that contains two dummy nodes. - Write an insertAfter method for a List implemented as a Linked List that contains two dummy nodes.

  • ANSWER IN JAVA ASAP 1.Implement a stack on the singly linked list with the operations of...

    ANSWER IN JAVA ASAP 1.Implement a stack on the singly linked list with the operations of Lab Assignment 1. Hint: Using the same Stack class you implemented, change the array to an object of the singly linked list class. The functionality of push and pop is now based on the methods of the linked list class.

  • 1)Given a Stack implemented with a Linked List, and an O(1) implementation of push and pop,show...

    1)Given a Stack implemented with a Linked List, and an O(1) implementation of push and pop,show the Linked List after the following commands are executed: Stack myStack = new Stack(); myStack.push(20); myStack.push(40); myStack.pop(); myStack.push(60); myStack.push(80); 2)If the same commands were used but the Stack was implemented with an Array with maximum size of 10, show what the array would look like after all these commands are executed. Assume O(1) implementation of push and pop here as well. 3)Given a Queue...

  • You implemented a stack as a singly linked list (you add at the head and remove...

    You implemented a stack as a singly linked list (you add at the head and remove from the head). Perform the following operations on the stack: push(50), push(90), push(30), push(53), push(52), pop(), push(51), pop(), pop(), push(100), and push(15). After all the operations are performed, draw the resulting linked list. Indicate which node is the top of the stack in the resulting linked list.

  • Assume you are working with a stack implementation of the linked list definition pasted below, write a member method “po...

    Assume you are working with a stack implementation of the linked list definition pasted below, write a member method “pop”.  The method should return a value (in the “popped” node).  Assume the existence of the node references called “TheStack” and “Top”. These references point to the start (or bottom) and top of the stack (or back of the list). ------- Definition:             class node {           boolean data;           node link; }          

  • // Java Queue LinkedList Assignment // A queue is implemented using a singly linked list. //...

    // Java Queue LinkedList Assignment // A queue is implemented using a singly linked list. // the variable: back "points" at the first node in the linked list // new elements ( enqueued) are added at the back // the variable: front "points" at the last node in the linked list. // elements are removed (dequeued) from the front // // Several queue instance methods are provided for you; do not change these // Other instance methods are left for...

  • Please write a Java interface for an integer stack (should have the methods push, pop, toString)....

    Please write a Java interface for an integer stack (should have the methods push, pop, toString). Then implement this interface using one of our linked list nodes. Then please write an interface for an integer queue ( should have methods enqueue, dequeue, and toString). Then implement this interface using one of our linked list objects. Please see chapter 3 in the text for a definition of a stack. Please write a program that asks the user for how many numbers...

  • In C++, a stack can be implemented using either an array or a singly linked list,...

    In C++, a stack can be implemented using either an array or a singly linked list, either approach may be appropriate. But one may be better than the other one. Indicate 2 advantages of each approach has over the other.

  • 1.If a list is implemented as a singly linked stack, give the big-O worst-case time complexity...

    1.If a list is implemented as a singly linked stack, give the big-O worst-case time complexity of the following operations (as usual use the smallest standard big-O category that works: a) push_front, b) push_back, c) lookup, d) read the i'th member 2.Repeat question 3 for a dynamic array (for example, as in the C++ vector class)

  • write the java code to convert a linked list of integers, to a stack of integers....

    write the java code to convert a linked list of integers, to a stack of integers. thus your code will traverse the linked listand populate the stsck. linked list 1->2->3. becomes stack 3 First Last 2 1

ADVERTISEMENT
Free Homework Help App
Download From Google Play
Scan Your Homework
to Get Instant Free Answers
Need Online Homework Help?
Ask a Question
Get Answers For Free
Most questions answered within 3 hours.
ADVERTISEMENT
ADVERTISEMENT