Question Detail

Recursive problems are implemented by

  • queues
  • stacks
  • linked lists
  • strings
Similar Questions :

1. The complexity of linear search algorithm is

  • O(n)
  • O(log n)
  • O(n2)
  • O(n log n)

2. The complexity of merge sort algorithm is

  • O(n)
  • O(log n)
  • O(n2)
  • O(n log n)

3. Which is having highest precedence in C

  • relational operators
  • equality operator
  • logical operator
  • arithmetic operator

4. minimum number of stacks of size n required to implement a queue of size n

  • One
  • Two
  • Three
  • Four

5. A graph with one or more edges is at least

  • 1-chromatic
  • 2-chromatic
  • 3-chromatic
  • 4-chromatic
Read more from - Data Structure Questions Answers - Chapter 1