create an singly linked lists and reverse the lists by
interchanging the links and not the data?
Answer Posted / guest
public class ReverseList {
public static void main(String[] args) {
ReverseList revalgo = new ReverseList ();
Node n1 = new Node();
n1.data = "A";
revalgo.insert(n1);
n1 = new Node();
n1.data = "B";
revalgo.insert(n1);
n1 = new Node();
n1.data = "C";
revalgo.insert(n1);
n1 = new Node();
n1.data = "D";
revalgo.insert(n1);
n1 = new Node();
n1.data = "E";
revalgo.insert(n1);
System.out.println("Link List");
revalgo.print();
System.out.println("Reversed Link List");
revalgo.reverse();
revalgo.print();
}
void insert(Node n)
{
n.next = root;
root = n;
}
void print()
{
Node current = root;
while(current != null)
{
System.out.print(current.data + "->");
current = current.next;
if(current == null)
System.out.println(""+ null);
}
}
void reverse()
{
Node current = null;
Node prev = null;
while(root != null)
{
current = root;
root = root.next;
current.next = prev;
prev = current;
}
root = current;
}
Node root = null;
}
class Node {
String data;
Node next;
}
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
Calculate the efficiency of sequential search?
What is an array vs list?
What is a Breadth First Search? Give a few of its applications.
Explain the Array
Can we search the data in a linked list?
How do I sort hashset?
Is stack a dynamic data structure?
Define the term “percolate down”?
How to copy an array into another array?
What is 2 dimensional linked list?
What do you know about traversal in linked lists?
You are given a singly linked list. How would you find out if it contains a loop or not without using temporary space?
Can a null element added to a treeset or hashset?
What is the height of an empty tree?
What is adt and its advantages?