adplus-dvertising
frame-decoration

Question

With regard to linked list, which of the following statement is false?

a.

An algorithm to search for an element in a singly linked list requires 0(n) operations in the worst case.

b.

An algorithm for deleting the first element in a singly linked list requires 0(n) operations in the worst case.

c.

An algorithm for finding the maximum value in a circular linked list requires 0(n) operations.

d.

An algorithm for deleting the middle node of a circular linked list requires 0(n) operations.

Answer: (b).An algorithm for deleting the first element in a singly linked list requires 0(n) operations in the worst case.

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. With regard to linked list, which of the following statement is false?

Similar Questions

Discover Related MCQs

Q. A hash function f defined as f(key) = key mod 7, with linear probing used to resolve collisions. Insert the keys 37, 38, 72, 48, 98 and 11 into the table indexed from 0 to 6. What will be the location of 11?

Q. Queue is a ............. list.

Q. In a full binary tree of height k, there are ................. internal nodes.

Q. A binary tree is said to have heap property if the elements along any path:

Q. The graph K3,4 has:

Q. If (rear==maxsize-1) rear=0; else rear=rear+1; is required in:

Q. Which of the following does not define a tree?

Q. The complexity of Kruskal’s minimum spanning tree algorithm on a graph with ‘n’ nodes and ‘e’ edges is :

Q. Which of the following data structures is most efficient in terms of both space and time to reverse a string of characters?

Q. Which of the following can be the sequence of nodes examined in a binary search tree while searching for key 98?

Q. Which of the following is true for a sorted list with ‘n’ elements?

Q. Consider  a  rooted  tree  in  which  every  node  has  at  least  three  children.  What  is  the minimum number of nodes at level i (i > 0) of the tree?  Assume that the root is at level 0:

Q. Which of the following data structure is used to implement recursion?

Q. The height of a binary tree with ‘n’ nodes, in the worst case is:

Q. Given a parallel algorithm A with computation time t, if parallel algorithm A performs m computational operation, then p processors can execute algorithm A in time given by:

Q. With reference to implementation of different association mining algorithms, identify the correct statement:

Q. The maximum number of nodes in a binary tree of depth 10 is:

Q. The time required to find shortest path in a graph with n vertices and e edges is:

Q. Pre order is also known as:

Q. The equivalent post fix expression for d/(e+f) + b*c is: