Question
a)
public void function(Object item)
{
Node temp = new Node(item,null);
if(isEmpty())
{
temp.setNext(trail);
head.setNext(temp);
}
else
{
Node cur = head.getNext();
temp.setNext(cur);
head.setNext(temp);
}
size++;
}
b)
public void function(Object item)
{
Node temp = new Node(item,null);
if(isEmpty())
{
temp.setNext(trail);
head.setNext(trail);
}
else
{
Node cur = head.getNext();
temp.setNext(cur);
head.setNext(temp);
}
size++;
}
c)
public void function(Object item)
{
Node temp = new Node(item,null);
if(isEmpty())
{
Node cur = head.getNext();
temp.setNext(cur);
head.setNext(temp);
}
else
{
temp.setNext(trail);
head.setNext(temp);
}
size++;
}
d) None of the mentioned
a.
a
b.
b
c.
c
d.
d
Posted under Data Structures and Algorithms
Engage with the Community - Add Your Comment
Confused About the Answer? Ask for Details Here.
Know the Explanation? Add it Here.
Q. Select the function which performs insertion at the front end of the dequeue?
Similar Questions
Discover Related MCQs
Q. What are the applications of dequeue?
View solution
Q. What is the time complexity of deleting from the rear end of the dequeue implemented with a singly linked list?
View solution
Q. After performing these set of operations, what does the final list look contain?
InsertFront(10);
InsertFront(20);
InsertRear(30);
DeleteFront();
InsertRear(40);
InsertRear(10);
DeleteRear();
InsertRear(15);
display();
View solution
Q. To implement a stack using queue(with only enqueue and dequeue operations), how many queues will you need?
View solution
Q. Express -15 as a 6-bit signed binary number.
View solution
Q. What is the time complexity for converting decimal to binary numbers?
View solution
Q. Which data structure can be used suitably to solve the Tower of Hanoi problem?
View solution
Q. Which among the following is not a palindrome?
View solution
Q. Which data structure can be used to test a palindrome?
View solution
Q. What is the number of moves required in the Tower of Hanoi problem for k disks?
View solution
Suggested Topics
Are you eager to expand your knowledge beyond Data Structures and Algorithms? We've curated a selection of related categories that you might find intriguing.
Click on the categories below to discover a wealth of MCQs and enrich your understanding of Computer Science. Happy exploring!